View Single Post
  #2  
Old 07-08-2008, 06:40 AM
Stryke Stryke is offline
Scripter
Join Date: Apr 2008
Posts: 157
Stryke is an unknown quantity at this point
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
setTimer0.05 );
}
function 
onTimeOut() {
  
this.clonedir = ((player.dir 2) % 4);
  
this.clonedx player.vecx(this.clonedir) * 2;
  
this.clonedy player.vecy(this.clonedir) * 2;
  
with (findimg(200)) {
    
layer 0;
    
thiso.clonedx;
    
thiso.clonedy;
    
player.z;
    
ani player.ani "[" player.anistep "]";
    
dir player.dir;
    
playerlook true;
    
actor.mode 1;
    
zoom 1;
  }
  
setTimer(.05);
}

function 
onActionHit() {
  
//damage code

Something like this I guess
Reply With Quote