09.11.2014, 13:18
What about this
pawn Код:
new bool:NewPlayer[MAX_PLAYERS];
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid, bodypart)
{
if(NewPlayer[damagedid] == true);
{
SetPlayerHealth(damagedid, 100);
SendClientMessage(playerid, -1, "No abuse to new players!!!!!!!");
}
return 1;
}