23.01.2017, 13:17
Use this.
PHP код:
new eString[ 9999 ] // put this at your variables
CMD:buyweapons( playerid, params[ ] )
{
eString[ 0 ] = EOS;
format( eString, sizeof( eString ),"Deagle Ammo: 100 Value: %d\n", Deagle );
format( eString, sizeof( eString ),"%sShotgun Ammo: 200 Value: %d", eString, Shotgun );
ShowPlayerDialog( playerid, 100, DIALOG_STYLE_LIST, "Weapon system", eString, "Select" , "Cancel" );
return 1;
}