JoyRo
New member
Hello,
i have a script that shows you how many players are online at a certain map.
But i am getting a script_rid2sd fatal error player not attached.
Can any 1 help me.
Also when i click the npc it warps me to the area.
i have a script that shows you how many players are online at a certain map.
But i am getting a script_rid2sd fatal error player not attached.
Can any 1 help me.
Also when i click the npc it warps me to the area.
Code:
//========= Event Area========
prontera,167,169,3 script Event Area 2_BULLETIN_BOARD,{
OnInit:
OnTimer1000:
delwaitingroom;
waitingroom getmapusers("prontera")+" player"+( getmapusers("prontera") > 1 ? "s":"") +" in Event Area", 0;
OnTouch:
warp "prontera",99,121;
end;
}