13.05.2015, 17:14
Hello im trying to create a /stats dialog but its not working and getting a warning:
Command:
PHP код:
(3595) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
Command:
PHP код:
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","Close", "");
return 1;
}