02.01.2013, 20:27
pawn Код:
stock GivePlayerArmour(playerid, Float:armour) {
new Float:Colete;
GetPlayerArmour(playerid, Colete);
SetPlayerHealth(playeird, Colete+armour);
return armour;
}
stock GivePlayerHealth(playerid, Float:health) {
new Float:Vida;
GetPlayerHealth(playerid, Vida);
SetPlayerHealth(playeird, Vida+health);
return health;
}