errors?

Results 1 to 5 of 5
  1. #1
    Apprentice darkness1993 is offline
    MemberRank
    Feb 2007 Join Date
    17Posts

    errors?

    dudes this are errors?


    or there its tells me that the server its working?saveing chars and crap stuff like that?


  2. #2
    Account Upgraded | Title Enabled! petertoft is offline
    MemberRank
    Jan 2008 Join Date
    In ur mom!Location
    417Posts

    Re: errors?

    Your server is saying Mysql is not online.

  3. #3
    Apprentice darkness1993 is offline
    MemberRank
    Feb 2007 Join Date
    17Posts

    Re: errors?

    i and should startup mysql to dont get that errors?how i startup mysql

  4. #4
    Account Upgraded | Title Enabled! Ne[o]x is offline
    MemberRank
    Apr 2008 Join Date
    Romania | Baia MareLocation
    235Posts

    Re: errors?

    you need to reinstall it, and install the MySQl on port 3306 and will work :P



    Cya

  5. #5
    Account Upgraded | Title Enabled! alexbigfoot is offline
    MemberRank
    Jun 2008 Join Date
    Right beside you.....Location
    240Posts

    Re: errors?

    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();
            }



Advertisement