View Single Post
  #1  
Old 08-23-2001, 08:03 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
Some go anywhere boots ....

These are some kool boots i whipped up for a playerworld and i dont beleive that scripts should be secrets so feel free to use this at your own expense ...
//NPC made by Nyght (FAQ)
if (playertouchsme) {toweapons Staff Boots

}

if (weaponfired) {
if (this.activated==0) {
setplayerprop #c, NAT Shoes On;
this.activated = 1;
timeout = 0.05;
}
else {
this.activated = 0;
setplayerprop #c, NAT 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;
}
}
if (timeout==0 && this.activated==1) {
if (this.speed==0) {
this.speed=1;
}
if (keydown(0)) {
playery -= this.speed;
}
if (keydown(1)) {
playerx -= this.speed;
}
if (keydown(2)) {
playery += this.speed;
}
if (keydown(3)) {
playerx += this.speed;
}
if (playerx > 61) {
playerx = 61;
}
if (playery > 61) {
playery = 61;
}
if (playerx < 0) {
playerx = 0;
}
if (playery < 0) {
playery = 0;
}
timeout = 0.05;
}
Reply With Quote