05.07.2016, 00:56
PHP код:
new StatsMenu[120], DialogStats[64]; //Don't forget to increase the value of the string 'StatsMenu[The value]'
strcat(StatsMenu, "---------------------------------------------");
format(StatsMenu, sizeof(StatsMenu), "%sRank VIP(with string)\n", StatsMenu, string(here); //e.g: Gold VIP, make it with a string
format(StatsMenu, sizeof(StatsMenu), "%s{FFFFFF}Level: %d\n", StatsMenu, Player[user][pLevel]);
format(StatsMenu, sizeof(StatsMenu), "%s{FFFFFF}Gender: %s\n", StatsMenu, gender);
format(StatsMenu, sizeof(StatsMenu), "%s{FFFFFF}Date of Birth: %d\n", StatsMenu, Player[user][pDateBirth]); //Continue like this ..
strcat(StatsMenu, "---------------------------------------------");
format(DialogStats, sizeof(DialogStats), "Showing Statistics of %s", Get the name of the player);
ShowPlayerDialog(playerid, idDialog, DIALOG_STYLE_MSGBOX, DialogStats, StatsMenu, "Next Page", "Close");