View Single Post
  #1  
Old 07-24-2002, 03:46 AM
Dean Dean is offline
Banned
Join Date: Sep 2001
Location: United Kingdom
Posts: 351
Dean will become famous soon enough
Newbie Script to fix

I know that this will be the ultimate challenge for you! Who am I kidding? This weapon sort of cuts out at random times and I have to reactivate it, any idea why?

if (playerenters){toweapons Wall Hopper;}
if (weaponfired){

while (keydown(1)){
sleep 0.09;
playerx-=1;
}

while (keydown(0)){
sleep 0.09;
playery-=1;
}

while (keydown(2)){
sleep 0.09;
playery+=1;
}

while (keydown(3)){
sleep 0.09;
playerx+=1;
}
}

Any help would be appreciated.
Reply With Quote