22.02.2010, 23:21
pawn Код:
new Float:health;
new Float:armour;
GetPlayerHealth(playerid, health);
GetPlayerArmour(playerid, armour);
format(string, sizeof(string), "Health: %d \nArmour: %d", floatround(health), floatround(armour));
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Player Stats", string, "Ok", "Cancel");