
02-02-2004, 04:35 PM
|
|
Banned
|
Join Date: Jan 2004
Posts: 434
|
|
A pretty simple script not working online
|
Im an ET on server Dynasty, and I don't understand why this script won't work. Its supposed to warp the player on top of the winners platform if they touch the npc with a bush. It works offline, when its uploaded, no work.
if (playertouchsme && carriesbush){
with (getplayer(#a)){
setcharprop #c,#a;
hide;
setlevel2 bushrace2.nw,33.5,30.5;
}
}
if (playerchats && strequals(#c,/reset)){
if (strequals(#g,Events Admin) || strequals(#g,Events Team)){
show;
}
}
//#CLIENTSIDE
if (created) {
// Initialize the attributes
showcharacter;
setcharprop #3,head7.png;
setcharprop #C0,orange;
setcharprop #C1,darkblue;
setcharprop #C2,brown;
setcharprop #C3,black;
setcharprop #C4,brown;
setcharprop #2,no-shield.gif;
shieldpower = 1;
dir = 2;
setcharprop #c, Touch me to win!;
} |
|
|
|