SA-MP Forums Archive
error 035: argument type mismatch (argument 2) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: error 035: argument type mismatch (argument 2) (/showthread.php?tid=199219)



error 035: argument type mismatch (argument 2) - Pooh7 - 14.12.2010

pawn Код:
new ip = GetPlayerIp(playerid, ip,20);
Код:
error 035: argument type mismatch (argument 2)
how to fix error?


Re: error 035: argument type mismatch (argument 2) - blackwave - 14.12.2010

pawn Код:
new ip[20];
GetPlayerIp(playerid, ip, 20);



Re: error 035: argument type mismatch (argument 2) - Pooh7 - 14.12.2010

Thanks.

Now I have 3 more errors

Command:
pawn Код:
if(strcmp(cmd, "/zakljucajserver", true) == 0)
    {
        if(PlayerInfo[playerid][pAdmin] >= 6 || IsPlayerAdmin(playerid))
        {
            if(ServerZakljucan == false)
            {
                tmp = strtok(cmdtext, idx);
                if(!strlen(tmp))
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "Koristite: /zakljucajserver [Lozinka]");
                    return 1;
                }
                tmp = strtok(cmdtext, idx);
                ServerZakljucan = true;
------ERROR--->     LozinkaServera = tmp; <------------- ERROR LINE
                new pstr[64];
                format(pstr, sizeof pstr, "|NLG|: Server zakljucan! Lozinka: %s", LozinkaServera);
                SendClientMessage(playerid, COLOR_RED, pstr);
                SendAdminMessage(COLOR_ORANGE, "|NLG| Server zakljucan!");
// rest of cmd
Error:
Код:
error 006: must be assigned to an array



And:
Somewhere in OnDialogResponse:
pawn Код:
if(!strcmp(inputtext, LozinkaServera, false))
Код:
error 035: argument type mismatch (argument 2)
I have global variable "LozinkaServera" ://