04.08.2014, 17:09
Publics and stocks aren't needed most of the time and you can just use a plain function.
pawn Код:
GivePlayerHealth(playerid, Float:amount)
{
new Float:health;
GetPlayerHealth(playerid, health);
SetPlayerHealth(playerid, health + amount);
}