06.06.2012, 21:19
Sure
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
new Float:x, Float:y, Float:z;
GetPlayerPos(i, x, y, z);
if(IsPlayerInRangeOfPoint(playerid, 1.0, x, y, z))
{
SetPlayerHealth(playerid, 100);
}
}
}


