SA-MP Forums Archive
Hmm help needed - 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: Hmm help needed (/showthread.php?tid=340004)



Hmm help needed - AlTy - 05.05.2012

Any ideas why this wont work?

pawn Код:
new plrIP[16];
GetPlayerIp(playerid, plrIP, sizeof(plrIP));
(line 1048)INI_WriteInt(File,"IP",plrIP);
I get this error:
Код:
D:\oProject\gamemodes\LSTDM.pwn(1048) : error 035: argument type mismatch (argument 3)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Thanks in advance!


Re: Hmm help needed - JaTochNietDan - 05.05.2012

INI_WriteInt is for writing integer values (WriteInteger), you are trying to write a string therefore you need to use the appropriate function for that, which I believe is INI_WriteString.


Re: Hmm help needed - AlTy - 05.05.2012

Thanks!