| Code: |
If(IsInThisArea(mobile))
SendSysMessage(mobile, "Damage is not allowed in this part of the World");
return;
Endif |
| Code: |
Function IsInThisArea( who ) //You can name it as you want
// Minoc Mine rectangle locations
if( who.x >= 2554 ) //Minimum X
if( who.x <2594>= 503 ) //Maximum Y
if( who.y <= 442 ) //Minimum Y
return 1;
endif
endif
endif
else
return 0;
endif
EndFunction |