SA-MP Forums Archive
Converting do dini - 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: Converting do dini (/showthread.php?tid=433664)



Converting do dini - Face9000 - 28.04.2013

Con someone help me converting this register variables to Dini?

pawn Код:
new hashpass[129];
            WP_Hash(hashpass,sizeof(hashpass),inputtext);
            new INI:file = INI_Open(Path(playerid));
            new pyear, pmonth, pday;
            new phour, pminute, psecond;
            getdate(pyear, pmonth, pday);
            gettime(phour, pminute, psecond);
            new RegDate[128];
            format(RegDate, 128, "%02d:%02d:%02d - %02d/%02d/%d", phour, pminute, psecond, pday, pmonth, pyear);
            INI_SetTag(file,"Player's Data");
            INI_WriteString(file,"Password",hashpass);
            INI_WriteInt(file,"Admin",0);
            INI_WriteInt(file,"Cash",0);
            INI_WriteInt(file,"Vip",0);
            INI_WriteInt(file,"Scores",0);
            INI_WriteInt(file,"Deaths",0);
            INI_WriteInt(file,"Nopm",0);
            INI_WriteInt(file,"Muted",0);
            INI_WriteInt(file,"Vip",0);
            INI_WriteInt(file,"Banned",0);
            INI_WriteInt(file,"Cookies",0);
            INI_WriteInt(file,"Warn",0);
            INI_WriteString(file,"RegisterDate", RegDate);
            INI_WriteInt(file,"Jailed", 0);
            INI_WriteInt(file,"Logged", 1);
            INI_WriteInt(file,"AdminActions", 0);
            INI_WriteInt(file, "Rank", 0);
            INI_WriteInt(file,"TempBan",0);
            INI_Close(file);
I tried but failed.