Auto Warp for unauhorized players on the map?

Bringer

New member
Messages
148
Points
0
Emulator
rAthena
im looking for a script that will automatic warp back to their save point if a player hasnt completed quest map
------ meaning player is not auhorized to be on that map

Note: authorized players are those who have completed the map quest- they are the only ones who can land on that map
 
Didn't test but should work provided you change things to your map and vars:

Code:
-	script	mapblock	-1,{OnPCLoadMapEvent:	if (strcharinfo(3) == "your_map" && !my_quest_completed) { // Unathorised		warp "SavePoint",0,0;	}}
 
Back
Top