Thread: Help me.
View Single Post
  #4  
Old 08-23-2001, 08:17 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
running boots

//NPC made by Nyght (FAQ)
if (playertouchsme) {toweapons Runnin' Shoes

}

if (weaponfired) {
if (this.activated==0) {
setplayerprop #c, Runnin' Shoes On;
this.activated = 1;
timeout = 0.05;
}
else {
this.activated = 0;
setplayerprop #c, Runnin' Shoes Off;
}
}
if (playerchats && strcontains(#c,speed)) {
if (strequals(#c,speed 0.5)) {
this.speed=0.5;
}
if (strequals(#c,speed 1)) {
this.speed=1;
}
if (strequals(#c,speed 1.5)) {
this.speed=1.5;
}
if (strequals(#c,speed 2)) {
this.speed=2;
}
}
This dont seem right i need to add a onwall thingy i think ....
Reply With Quote