01.10.2017, 20:19
Код:
CMD:stats(playerid,params[]) { new string[128], stats[1024]; format(string,sizeof(string),"**- Cash: $ %d /n Score: %d /n Admin: %s /n VIP: %d /n Wanted: %d /n Permission: %d -**",PlayerInfo[playerid][pCash],PlayerInfo[playerid][pScore],(PlayerInfo[playerid][pAdmin]!=0 ? "Yes" : "No"),PlayerInfo[playerid][pVIP],PlayerInfo[playerid][Wanted],PlayerInfo[playerid][pPermission]); format(stats, sizeof stats, "%s", string); ShowPlayerDialog(playerid,STATS,DIALOG_STYLE_MSGBOX,"Account Information:",stats,"Ok",""); return 1; }