23.01.2011, 08:40
No script needed. Make a loop to find the closest players, and heal them.
pawn Код:
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
for(new i = 0;i<MAX_PLAYERS;i++) if(IsPlayerInRangeOfPoint(i, 50.0, x, y, z)) SetPlayerHealth(i,100);