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)
+--- Thread: error 035: argument type mismatch (argument 2) (/showthread.php?tid=510501)



error 035: argument type mismatch (argument 2) - LazyB0y - 01.05.2014

Код:
if (strcmp("/lsstunt", cmdtext, true, 10) == 0)
    {
	    SetPlayerPos(playerid, "266,-1539.3887,-1076.7513,769.5139,274.6397");
		SendClientMessage (playerid, "You Have Been Teleported To Los Santos Crazy Stunt");
		return 1;
	}
I Am Getting This Error I Don't Know Why,I Am New To SA-MP Scripting.. Anyone Can Fix It?


Re: error 035: argument type mismatch (argument 2) - Konstantinos - 01.05.2014

You have the coordinates inside quotes and it takes it as string.

pawn Код:
SetPlayerPos(playerid, -1539.3887, -1076.7513, 769.5139);
SetPlayerFacingAngle(playerid, 274.6397);



Re: error 035: argument type mismatch (argument 2) - Danyal - 01.05.2014

pawn Код:
if (strcmp("/lsstunt", cmdtext, true, 10) == 0)
    {
        SetPlayerPos(playerid, 266,-1539.3887,-1076.7513,769.5139,274.6397);
        SendClientMessage (playerid, "You Have Been Teleported To Los Santos Crazy Stunt");
        return 1;
    }
This forum requires that you wait 120 seconds between posts. Please try again in 26 seconds.


Re: error 035: argument type mismatch (argument 2) - LazyB0y - 01.05.2014

Код:
if (strcmp("/lsstunt", cmdtext, true, 10) == 0)   {
            SetPlayerPos(playerid, -1539.3887, -1076.7513, 769.5139);
			SetPlayerFacingAngle(playerid, 274.6397);
			SendClientMessage (playerid, "You Have Been Teleported To Los Santos Crazy Stunt");
			return 1;
	}
I Did This In The Pawno And The Error Was
Код:
 error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.



Re: error 035: argument type mismatch (argument 2) - Konstantinos - 01.05.2014

Danyal used 6 arguments and the function has 4. The arguments are also wrong in SendClientMessage:
pawn Код:
if (!strcmp("/lsstunt", cmdtext, true, 8))
{
    SetPlayerPos(playerid, -1539.3887, -1076.7513, 769.5139);
    SetPlayerFacingAngle(playerid, 274.6397);
    SendClientMessage(playerid, -1, "You Have Been Teleported To Los Santos Crazy Stunt");
    return 1;
}



Re: error 035: argument type mismatch (argument 2) - Danyal - 01.05.2014

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Danyal used 6 arguments and the function has 4. The arguments are also wrong in SendClientMessage:
pawn Код:
if (!strcmp("/lsstunt", cmdtext, true, 8))
{
    SetPlayerPos(playerid, -1539.3887, -1076.7513, 769.5139);
    SetPlayerFacingAngle(playerid, 274.6397);
    SendClientMessage(playerid, -1, "You Have Been Teleported To Los Santos Crazy Stunt");
    return 1;
}
FK Me i just removed quotes sorry for mistake.

Thanks Konstantinos for correction.


Re: error 035: argument type mismatch (argument 2) - LazyB0y - 01.05.2014

No Problem It Worked +repped u 2..


Re: error 035: argument type mismatch (argument 2) - LazyB0y - 01.05.2014

and can u tell me that I can make a filterscript with that code?