- 0
npc that checks cells if there's already a player on that cell
Asked by
celeron0134
-
Recently Browsing 0 members
No registered users viewing this page.
Asked by
celeron0134
No registered users viewing this page.
By using this site, you agree to our Terms of Use.
this NPC checks if the user is on the right cell so the user can talk or not talk to the NPC..
if you are outside the cell.. and a player is already in the cell you cant talk to the NPC or a dialogue will pop up that someone is still in front of me
wait for him/her to leave the cell
quiz_02,246,374,4 script cell checker 112,{ .@n = getareausers("quiz_02", 246, 372, 246, 372); if (.@n < 1) { mes "["+ strnpcinfo(0) +"]"; mes "Please stand in front of me to talk"; close; } if (.@n == 1) mes "["+ strnpcinfo(0) +"]"; mes "Congrats you are now in front of me"; close; }else{ npctalk "Too many people in front of me, only one person will be teleported in next 10 minute."; end; }
i need something like this
if ((.@n == 1) && (strcharinfo(0) != .@n)) mes "someone is on front of me"; mes "and i am waiting for him/her to talk to me"; mes "wait till the player leave the cell"; end;
Share this post
Link to post
Share on other sites