Quote:
|
Originally Posted by Kronan
HTML Code:
if (actionserverside) {
setlevel2 onlinestartlocal.nw,30,30;
}
//#CLIENTSIDE
if (playerenters || created) {
timeout = 1;
}
if (timeout) {
triggeraction 0,0,serverside,#n;
}
|
...dont give bad advice, i'm assuming this is a level npc
NPC Code:
if (actionserverside) setlevel2 onlinestartlocal.nw,30,30;
//#CLIENTSIDE
if (created || playerenters) timeout = 1;
if (timeout) triggeraction x,y,serverside,;
i dont really mind giving this out since its just 4 lines, but you should really look over some of the documents graal give you or visit Graal Wiki.