SA-MP Forums Archive
INI writing spaces - 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 writing spaces (/showthread.php?tid=503979)



INI writing spaces - Lidor124 - 01.04.2014

So how to make spaces on WriteInt and WriteFloat etc. functions with Y INI without get any probems on loading the stored values?

Код:
INI_WriteInt(File, "C4s", PlayerInfo[playerid][pStolenC4]);

	// Weapons Ammo Save
	for(new s = 0; s < 12; s++)
	{
		if(PlayerInfo[playerid][pAGuns][s] > 0)
		{
			SaveValidAmmo(playerid);
			format(tag, sizeof(tag), "Weapon Slot %i", s);
			INI_SetTag(File, tag);
			INI_WriteInt(File, "wSlot", PlayerInfo[playerid][pGuns][s]);
			INI_WriteInt(File, "wSlotAmmo", PlayerInfo[playerid][pAGuns][s]);
		}	
	}
	INI_WriteInt(File, "CarTime", PlayerInfo[playerid][pCarTime]);