SA-MP Forums Archive
INI_WriteString for password - 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: INI_WriteString for password (/showthread.php?tid=340923)



INI_WriteString for password - JaKe Elite - 09.05.2012

I know how to use INI_WriteString

but i want to use INI_WriteString with password also includes with udb_hash by draco blue
but when i try this

pawn Код:
INI_WriteString(file, "Password", udb_hash(inputtext));
it gave me argrument tag mismatch error.


Re: INI_WriteString for password - ReneG - 09.05.2012

udb_hash returns an integer.

So use INI_WriteInt.

You can try using Whirlpool to hash your passwords instead. Then you can use INI_WriteString.


Re: INI_WriteString for password - JaKe Elite - 09.05.2012

Thanks VincentDunn i will use Whirlpool instead.