dini tag mis match with Floats - 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: dini tag mis match with Floats (
/showthread.php?tid=186811)
dini tag mis match with Floats -
BLAbla93 - 30.10.2010
pawn Код:
dini_IntSet(file, "Enterx", hinfo[houseid][Enterx]);
dini_IntSet(file, "Entery", hinfo[houseid][Entery]);
dini_IntSet(file, "Enterz", hinfo[houseid][Enterz]);
dini_IntSet(file, "Exitx", hinfo[houseid][Exitx]);
dini_IntSet(file, "Exity", hinfo[houseid][Exity]);
dini_IntSet(file, "Exitz", hinfo[houseid][Exitz]);
I tryed using dini_Set but I still get the same warning any idea why becuase I can save the other items in dini and they look just like this but I don't get a tag mismatch
Re: dini tag mis match with Floats -
MadeMan - 30.10.2010
Use dini_FloatSet
Re: dini tag mis match with Floats -
Mike_Peterson - 30.10.2010
Код:
dini_FloatSet(file, "Enterx", hinfo[houseid][Enterx]);
dini_FloatSet(file, "Entery", hinfo[houseid][Entery]);
dini_FloatSet(file, "Enterz", hinfo[houseid][Enterz]);
dini_FloatSet(file, "Exitx", hinfo[houseid][Exitx]);
dini_FloatSet(file, "Exity", hinfo[houseid][Exity]);
dini_FloatSet(file, "Exitz", hinfo[houseid][Exitz]);
Re: dini tag mis match with Floats -
BLAbla93 - 30.10.2010
awesome thanks!