SA-MP Forums Archive
ini a 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: ini a dini (/showthread.php?tid=586637)



ini a dini - MARIOBROSS - 23.08.2015

I want to pass this on to dini

Код:
        for( new a = 0; a < 11; a++ )
	{
 	new mStr[24];
		format( mStr, sizeof( mStr ), "Mueble%d", a);
		INI_Int(mStr, Info[playerid][pMuebles][a]);
	}
Thanks


Re: ini a dini - thaKing - 23.08.2015

sorry, my bad. this won't work.


Re: ini a dini - MARIOBROSS - 23.08.2015

Quote:
Originally Posted by runcis
Посмотреть сообщение
sorry, my bad. this won't work.
I have to change to keep ini?


Re: ini a dini - MARIOBROSS - 24.08.2015

Help or impossible to do that? ini a dini


AW: ini a dini - Kaliber - 24.08.2015

Why you wanna do that?

This filesystem is a way faster then dini...

And they have the same functions...


Re: AW: ini a dini - MARIOBROSS - 24.08.2015

Quote:
Originally Posted by Kaliber
Посмотреть сообщение
Why you wanna do that?

This filesystem is a way faster then dini...

And they have the same functions...
Because my server saves Dini and if I put ini gives me errors


Re: ini a dini - Toxik - 24.08.2015

try this
pawn Код:
for( new a = 0; a < 11; a++ )
    {
    new mStr[24];
        format( mStr, sizeof( mStr ), "Mueble%d", a);
        dini_Int(mStr, Info[playerid][pMuebles][a]);
    }