Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Boots (https://forums.graalonline.com/forums/showthread.php?t=60326)

alissalee 08-03-2005 05:48 AM

Boots
 
Help please all the scripts i use didnt work at all so please some one help?

Lance 08-03-2005 06:16 AM

Quote:

Originally Posted by alissalee
Help please all the scripts i use didnt work at all so please some one help?

Could you please be a little more specific? You are bordering on violating Rule 1 of this forum. :\

napo_p2p 08-03-2005 07:14 AM

http://www.graal.net/snippet/detail....=snippet&id=16

Is that what you are looking for?

alissalee 08-03-2005 03:03 PM

Boots
 
i tested that one and it didnt work for me

Bl0nkt 08-03-2005 03:30 PM

Two problems I see:

1. You're trying to put it in a level. This won't work because there's no weapon for 'weaponfired' to trigger. Put that script in a weapon to make it work (You need NC access in RC).

2. You're trying to use it offline. Same applies as above.

alissalee 08-03-2005 03:51 PM

if (this.on==1){
setplayerprop #c, Speed: 6;
this.speed = 6;
}
}
if (keypressed && strequals(#p(1),7)) {
if (this.on==1){
setplayerprop #c, Speed: 7;
this.speed = 7;
}
}
if (keypressed && strequals(#p(1),8)) {
if (this.on==1){
setplayerprop #c, Speed: 8;
this.speed = 8;
}
}
if (keypressed && strequals(#p(1),9)) {
if (this.on==1){
setplayerprop #c, Speed: 9;
this.speed = 9;
}
}
if (keypressed && strequals(#p(1),0)) {
if (this.on==1){
setplayerprop #c, Speed: 10;
this.speed = 10;
}
}
if (keypressed && strequals(#p(1),`)) {
if (this.on==0) {
this.on = 1;
this.speed = 1;
timeout = .05;
setplayerprop #c, Boots on;
}
else if (this.on==1) {
this.on = 0;
setplayerprop #c, Boots off;
}
}
if (playerchats&&strequals(#c,/fix)) {
this.on = 0;
enableweapons;
}

can some one fix it please?

Lance 08-04-2005 03:42 AM

Quote:

Originally Posted by alissalee
can some one fix it please?

Quote:

Originally Posted by rule 1 of this forum
1) Don't post here just asking for scripts, or asking for people to fix scripts that are beyond your skill level. The posters here aren't just some handy resource for scripting shortcuts. If you can't script something then don't try to produce it. If you're trying to make it to aid your learning then set your sights lower. If you want it for a server then go hire a scripter.

See above.


All times are GMT +2. The time now is 04:13 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.