Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

errors?

Newbie Spellweaver
Joined
Feb 4, 2007
Messages
17
Reaction score
0
dudes this are errors?


or there its tells me that the server its working?saveing chars and crap stuff like that?
 
Newbie Spellweaver
Joined
Feb 4, 2007
Messages
17
Reaction score
0
i and should startup mysql to dont get that errors?how i startup mysql
 
Experienced Elementalist
Joined
Apr 7, 2008
Messages
229
Reaction score
0
you need to reinstall it, and install the MySQl on port 3306 and will work :p



Cya
 
Experienced Elementalist
Joined
Jun 12, 2008
Messages
237
Reaction score
0
omg what a ******* noobs...read carefully it says error at EXP COLUMN lol.
the problem at lotf sources are the infinite leveling ...i mean u can plvl how much u want , what ever u want...the skills and the level are the same xD after the maximum lvl u can add more and more and more exp...lol
(if u dont trust me look in ur DB at ur char at skills and u will see skillid:level:exp if ur skill is lvl 9 u have more than 0 exp there)
anyway this problem can be solved by 1 way.how i fixed it is :
if u get lvl 130 automaticaly u get 135 and at every save ur chars save 0 exp and level 135... and u wont get that error ever back...
just do the next things:
1.in general.cs search for
public static void Thetimer_Elapsed(object sender, ElapsedEventArgs e)
that whole Thetimer_Elapsed deleted it...and add
Code:
        public static void Thetimer_Elapsed(object sender, ElapsedEventArgs e)
        {
            foreach (DictionaryEntry DE in World.AllChars)
            {
                Character Char = (Character)DE.Value;

                if (Char.Level >= 129)
                {
                    Char.Level = 135;
                    {
                        DataBase.GetStats(Char);
                    }
                    Char.Exp = 0;
                    DataBase.SaveChar(Char);
                }
                else
                {
                    DataBase.SaveChar(Char);
                }
            }
            Guilds.SaveAllGuilds();
        }
 
Back
Top