31.08.2016, 15:04
Код HTML:
C:\Documents and Settings\All Users\Desktop\BufFixes\gamemodes\ngcgm.pwn(3459) : error 035: argument type mismatch (argument 2) C:\Documents and Settings\All Users\Desktop\BufFixes\gamemodes\ngcgm.pwn(3460) : error 035: argument type mismatch (argument 2) C:\Documents and Settings\All Users\Desktop\BufFixes\gamemodes\ngcgm.pwn(3461) : error 035: argument type mismatch (argument 2) C:\Documents and Settings\All Users\Desktop\BufFixes\gamemodes\ngcgm.pwn(3463) : error 035: argument type mismatch (argument 2) C:\Documents and Settings\All Users\Desktop\BufFixes\gamemodes\ngcgm.pwn(3464) : error 035: argument type mismatch (argument 2)
Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { if(dialogid == DIALOG_WEAPONS) { if(response) // If they clicked 'Select' or double-clicked a weapon { // Give them the weapon switch(listitem) { case 0: return cmd_sf(playerid, ""); case 1: return cmd_lv(playerid, ""); case 2: return cmd_ls(playerid, ""); case 3: return cmd_sfa(playerid, ""); case 4: return cmd_lva(playerid, ""); case 5: return cmd_lsa(playerid, ""); } } return 1; // We handled a dialog, so return 1. Just like OnPlayerCommandText. } return 0; // You MUST return 0 here! Just like OnPlayerCommandText. }