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