08.08.2011, 18:42
1- Para que afecte a todos los jugadores se usa un bucle ( yo use for)
pawn Код:
if(strcmp(cmdtext,"/comando",true) == 0)
{
new Float:posx,Float:posy,Float:posz;
GetPlayerPos(playerid,posx,posy,posz);
for(new i=0; i < MAX_PLAYERS; i++) {
if(IsPlayerConnected(i)) {
if(IsPlayerInRangeOfPoint(i,5.0,posx,posy,posz)) {
SetPlayerHealth(i,0.0);
}
}
}
return 1;
}