SA-MP Forums Archive
Fast Dini question - 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: Fast Dini question (/showthread.php?tid=254743)



Fast Dini question - sim_sima - 12.05.2011

Hello guys.
I want to save a value of a variable into a file in Dini.
When i used dini_IntSet, it seems to have no effect.
Do i have use anything else than "IntSet"?

Thank you.


Re: Fast Dini question - Vince - 12.05.2011

Depends on what kind of variable you're trying to save. dini_IntSet is only meant for integers (i.e. whole numbers). Use dini_Set for strings, dini_FloatSet for floats and dini_BoolSet for booleans.


Re: Fast Dini question - sim_sima - 12.05.2011

Quote:
Originally Posted by Vince
Посмотреть сообщение
Depends on what kind of variable you're trying to save. dini_IntSet is only meant for integers (i.e. whole numbers). Use dini_Set for strings, dini_FloatSet for floats and dini_BoolSet for booleans.
Thank you. Ill try.