09.04.2019, 13:55
If you don't want to use the streamer, you could simply do a check on the player's X and Y:
pawn Code:
new Float:X, Float:Y, Float:Z;
GetPlayerPosition(playerid, X, Y, Z);
if(X >= minx && X <= maxx && Y >= miny && Y <=maxy)
{ // do something
}