C:\Documents and Settings\Administrator\Desktop\xReputation.pwn(68) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.
CMD:myreputation(playerid,params[]) { new string[128], pName[MAX_PLAYER_NAME]; GetPlayerName(playerid,pName,MAX_PLAYER_NAME); format(string,sizeof string,"%s",pName); ShowPlayerDialog(playerid, MYREP, DIALOG_STYLE_MSGBOX, "{00C0FF}Reputation", "{FFFFFF}+++++ {00C0FF}%s's Reputation {FFFFFF}+++++", "Close", "", pName); return 1; }
ShowPlayerDialog(playerid, MYREP, DIALOG_STYLE_MSGBOX, "{00C0FF}Reputation", "{FFFFFF}+++++ {00C0FF}%s's Reputation {FFFFFF}+++++", "Close", "", pName);
ShowPlayerDialog(playerid, MYREP, DIALOG_STYLE_MSGBOX, "{00C0FF}Reputation", string, "Close", "");
pawn Код:
|
new string[128], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
format(string, sizeof string, "{FFFFFF}+++++{00C0FF}%s's Reputation {FFFFFF}+++++", pName);
ShowPlayerDialog(playerid, MYREP, DIALOG_STYLE_MSGBOX, "{00C0FF}Reputation", string, "Close", "", pName);