[help]Monk S

05/07/2011 20:52 taylor2846#1
hello everyone.
does anyone have the status for monk they can post here?
what i mean status is like

[Level=1]//This is status Trojan =]
Strength=5
Agility=2
Vitality=3
Spirit=0

so if anyone have the status for monk 1 > 120 it would be a great help.
thank you all.

NM, #request close and delete =].
just found them on
Spirited wiki page =]
05/07/2011 21:36 Spirited42#2
Quote:
Originally Posted by taylor2846 View Post
NM, #request close and delete =].
just found them on
Spirited wiki page =]
Yep =] Glad someone got use of it.
05/07/2011 22:18 F i n c h i#3
Quote:
Originally Posted by Spirited View Post
Yep =] Glad someone got use of it.
It helped me much too.
Thanks Spirited
05/07/2011 23:14 taylor2846#4
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