SA-MP Forums Archive
error 035: argument type mismatch (argument 3) - 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 3) (/showthread.php?tid=516536)



Variable Error - youssefehab500 - 31.05.2014

Код:
	
1687-new CarChaseVar[50];
1688-new File[125];
1689-if(!dini_Exists(File))
1690-dini_IntSet(File, "CarChaseID", CarChaseVar);
1691-format(File, 128, "/CarChase.txt");
error 035: argument type mismatch (argument 3) in line 1690 :D


Re: error 035: argument type mismatch (argument 3) - Eth - 31.05.2014

replace :
pawn Код:
dini_IntSet(File, "CarChaseID", CarChaseVar);
with this:
pawn Код:
dini_Set(File, "CarChaseID", CarChaseVar);
because you are trying to insert a string..


Re: error 035: argument type mismatch (argument 3) - youssefehab500 - 31.05.2014

Quote:
Originally Posted by Eth
Посмотреть сообщение
replace :
pawn Код:
dini_IntSet(File, "CarChaseID", CarChaseVar);
with this:
pawn Код:
dini_Set(File, "CarChaseID", CarChaseVar);
because you are trying to insert a string..
thanks bro worked ill Rep+ you as a thanks