View Single Post
  #10  
Old 08-25-2001, 03:12 AM
BocoC BocoC is offline
Registered User
BocoC's Avatar
Join Date: Jun 2001
Location: Washington State, USA
Posts: 980
BocoC is on a distinguished road
Send a message via AIM to BocoC Send a message via Yahoo to BocoC
Re: Some go anywhere boots ....

Quote:
Originally posted by nyghtGT
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;
}
Heh. I am flatered you are taking credit for my script I made for Bravo a long time ago. But, you changed the name. It SHOULD be NAT Boots. You might wanna fix that...

Also, this script was made in Graal 1.41 I think. Or maybe 2.0... But before tokenize and startswith was made. Just to let you know.

If you guys want, I can post my old Admin level I made, complete with some good scripts, but old, for you guys. I just gotta check if I still have it...
__________________
-Boco

FLKJH$TRFG*$(&%>FMG >REN<>F ;.kjsd

Last edited by BocoC; 08-25-2001 at 03:26 AM..
Reply With Quote