stock GivePlayerHealth(playerid, Float: health){ new Float: Health; GetPlayerHealth(playerid, Health); SetPlayerHealth(playerid, Health + health);}stock GivePlayerScore(playerid, Float: score){ new Float: Score; GetPlayerScore(playerid, Score); SetPlayerScore(playerid, Score + score);}
Float: GetHealth(id) { new Float: pp; GetPlayerHealth(id,pp); return pp; }