13.01.2015, 17:03
Use zonesystem filterscript if you want, https://sampforum.blast.hk/showthread.php?tid=161741
pawn Код:
new ZoneName[MAX_ZONE_NAME];
GetPlayer2DZone(callerid, ZoneName, MAX_ZONE_NAME);
new callerName[MAX_PLAYER_NAME]; GetPlayerName(callerid, callerName, MAX_PLAYER_NAME);
new string[128];
format(string, sizeof string, "Caller: %s, Location: %s", callerName, ZoneName);
for(new i = 0; i != MAX_PLAYERS; i++) if(/*if is player mechanic*/) SendClientMessage(i, 0xFFFFFFFF, string);

