technicaly it dont even has anything to do with "ini`s" , its just a LOTF error...and if u`d read that console better u should see the easy fix lol, in character.cs , search for
Code:
public void AddItem(string ItemInfo,
then find there
Code:
else if (ToPos < 10)
{
Equips[ToPos] = ItemInfo;
Equips_UIDs[ToPos] = UID;
GetEquipStats(ToPos, false);
}
change it to:
Code:
else if (ToPos < 9)
{
Equips[ToPos] = ItemInfo;
Equips_UIDs[ToPos] = UID;
GetEquipStats(ToPos, false);
}
Problem fixed. The 3nD.