View Single Post
  #2  
Old 06-16-2014, 11:56 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
PHP Code:
function onCreated() {
  
setImg("blackbeltben_bullet.png"); 
  
setShape(13232); 
  
moveBullet();
}

function 
movebullet() {
  
temp.dx this.newx this.x// delta = final position - initial position
  
temp.dy this.newy this.y;
  
temp.dist vectordist({this.xthis.y0}, {this.newxthis.newy0}); 
  
temp.speed 0.5;
  
temp.time temp.dist temp.speed;
  
move(temp.dxtemp.dytemp.time0);
  
setTimer(temp.time);
}

function 
onTimeout() {
  
destroy();

__________________
Quote:
Reply With Quote