03.02.2013, 18:06
'Style' is the player's fight style and I want it to show up in the stats like, "Fight style: Boxing"
The number saved for the boxing fight style is '5'.
The number saved for the boxing fight style is '5'.
pawn Код:
enum PlayerInfo
{
Style,
Cigar,
Cash
}
pawn Код:
CMD:stats(playerid, params[])
{
new str[128];
format(str,sizeof(str),"Cash: %i - Cigars: %i",pInfo[playerid][Cash],pInfo[playerid][Cigar]);
ShowPlayerDialog(playerid,13,0,"Stats",str,"Close","");
return 1;
}