11.01.2012, 08:12
yes. and the part of where there Health and Armour Set i will prefer use SetPVarInt
sorry i didn't understand your english sorry about that by the way the codes are at the top
pawn Код:
//add this on the top of the code where the setplayerhealth(playerid, health + 100000); is at
SetPVarInt(playerid, "MyHealth", GetPlayerHealth(playerid));
SetPVarInt(playerid, "MyArmour", GetPlayerArmour(playerid));
//then below after they off duty
SetPlayerHealth(playerid, GetPVarInt(playerid, "MyHealth"));
SetPlayerArmour(playerid, GetPVarInt(playerid, "MyArmour"));

