Detaljan opis problema: radio sam na sistemu spremanja i zbog nepoznatog razloga mi sprema jedno ispod drugog
Dio skripte:
Neke slike/video za lakse dobivanje pomoci(neobavezno):

forward SaveRuksak(playerid);
public SaveRuksak(playerid)
{
new INI:File = INI_Open(RuksakPath(playerid));
INI_SetTag(File,"data");
INI_WriteInt(File, "Oruzje", InventoryInfo);
INI_WriteInt(File, "Municija", InventoryInfo);
INI_WriteInt(File, "Crack", InventoryInfo);
INI_WriteInt(File, "Marihuana", InventoryInfo);
INI_WriteInt(File, "Sjeme Marihuane", InventoryInfo);
INI_WriteInt(File, "Sjeme Koke", InventoryInfo);
INI_Close(File);
return 1;
}forward ucitajruksak_data(playerid, name[], value[]);
public ucitajruksak_data(playerid, name[], value[])
{
INI_Int("Oruzje", InventoryInfo);
INI_Int("Municija", InventoryInfo);
INI_Int("Crack", InventoryInfo);
INI_Int("Marihuana", InventoryInfo);
INI_Int("Sjeme Marihuane", InventoryInfo);
INI_Int("Sjeme Koke", InventoryInfo);
return 1;
}