Mr BrycE Posted June 2, 2013 Posted June 2, 2013 i would like to ask how to check if there's a player in map? for example.. "Dungeon Quest NPC" "Sorry it appears someone is still fighting the boss inside" Quote
Jaburak Posted June 2, 2013 Posted June 2, 2013 set map1,getmapusers("yourmap"); if(map1 >= 1) goto Lfull; L_full: mes "Sorry, it appears someone is still fighting the boss inside!"; close; 1 Quote
Emistry Posted June 5, 2013 Posted June 5, 2013 shouldnt use permanent variable in this case ...a temporary variable is more than enough ... beside..permanent variable are very limited too , shouldnt waste on these situation...xD if( getmapusers("yourmap") ){ mes "Someone inside the maps..."; close; } Quote
Question
Mr BrycE
i would like to ask how to check if there's a player in map?
for example..
"Dungeon Quest NPC"
"Sorry it appears someone is still fighting the boss inside"
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.