13.05.2015, 17:18
The problem is with your dialog.
Код:
CMD:stats(playerid, params[]) { new string[128]; SendClientMessageEx(playerid, TeamInfo[PlayerInfo[playerid][pTeam]][tColor], "____________________________________________________"); format(string, sizeof(string), "Name: %s | Score: %d | Kills: %d | Deaths: %d", pName(playerid), PlayerInfo[playerid][pScore], PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths]); SendClientMessageEx(playerid, COLOR_WHITE, string); SendClientMessageEx(playerid, TeamInfo[PlayerInfo[playerid][pTeam]][tColor], "____________________________________________________"); ShowPlayerDialog(playerid,DIALOG_STATS, DIALOG_STYLE_MSGBOX, "Stats Test", string,"Close", ""); return 1; }