to bad it was in the wrong format for me =[ lmao
thats where coding comes in handy xD
btw here is the code i created 4 if anyone else needs it for geting monk status not going to tell how to use it or anything but here is the code xD
Code:
case "/convert":
{
IniFile rdr = new IniFile(ServerDatabase.Path + "\\Misc\\" + "MonkByeSpirited" + ".ini");
IniFile rdr2 = new IniFile(ServerDatabase.Path + "\\Misc\\" + "Monk" + ".ini");
for (int i = 1; i <= 120; i++)
{
string Lvl = Convert.ToString(i);
string[] value = rdr.ReadString("status", "Monk[" + Lvl + "]", "").Split(',');
rdr2.Write<string>(Lvl, "Strength", value[0]);
rdr2.Write<string>(Lvl, "Agility", value[2]);
rdr2.Write<string>(Lvl, "Vitality", value[1]);
rdr2.Write<string>(Lvl, "Spirit", value[3]);
Console.WriteLine("Added MonkStatus Lvl{0}", Lvl);
}
break;
}
it converts from a
Monk[1]=3,4,1,2 to a
[1]
Strength=3
Agility=1
Vitality=4
Spirit=2
this code was created bye me btw xD