22.01.2016, 08:08
How to display a text for player under the cash ammount for example of "Coins system" like:
I need it to show how many coins a player have once he connects till he disconnects.
Код:
CMD:mygears(playerid, params[])
{
format(sstring, sizeof(sstring), "\t%s 's Gears ammount:\n\nYou Have: %d Gears!", Global_Name, PlayerInfo[playerid][GoldCoins]);
ShowPlayerDialog(playerid, MyCoins, BOX,"Gears Info",sstring,"Quit","");
return 1;

