11.08.2011, 12:47
add this:
pawn Код:
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
for(new i=0; i<GetMaxPlayers(); i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, 20.00, x, y, z))
{
SendClientMessage(i, COLOR_WHITE, str);
}
}
}