View Single Post
  #6  
Old 01-01-2011, 11:39 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
PHP Code:
     if(key "d"){ 
      
setshootparams("callihelimissle"player.account); 
      
shoot(this.plane_x vecx(this.plane_dir), this.plane_y vecy(this.plane_dir), playerz, (this.plane_dir+1) * pi random0,0), NULLNULL"callihelimissle"2); 
     } 
     function 
onActionProjectile() 
      { 
        
player.hearts-=0.5
        
setAni("hurt",NULL); 
    } 
becomes

PHP Code:
     if(key == "d"){ 
      
setshootparams("callihelimissle"player.account); 
      
shoot(this.plane_x vecx(this.plane_dir), this.plane_y vecy(this.plane_dir), player.z, (this.plane_dir+1) * pi random0,0), NULLNULL"callihelimissle"2); 
     } 
You should learn to script rather than just taking other peoples' code without understanding it.
__________________
Reply With Quote