17.10.2010, 11:58
How to add health to player? Not set (SetPlayerHealth), but add...
public AddPlayerHealth( playerid, Float:Amount )
{
new Float:Health;
GetPlayerHealth(playerid, Health);
SetPlayerHealth (playerid, Health + Amount);
return floatround(Health + Amount);
}