Page 1 of 1
Re: SQLite causing server to crash
Posted: Sat Jan 31, 2009 11:47 am
by YamiKaitou
I will not deny that wc3ft could be causing crashes, but without knowing the cause, we can't fix them. So, unless you can assist in locating the cause, there isn't much anyone can do
Re: SQLite causing server to crash
Posted: Sun Feb 01, 2009 4:54 pm
by whosyourdaddy
well i noticed on the saves for skill level it has this in there
Code: Select all
iCurrentLevel >= 0 && g_iDBPlayerSkillStore[id][iSkillID] != iCurrentLevel
i found it irrelevant in saving the skill level if its 0 cause that means they have no skill in it so to reduce my system usage on change map if you have over 24 players theres alot of saving i just change it to
Code: Select all
iCurrentLevel > 0 && g_iDBPlayerSkillStore[id][iSkillID] != iCurrentLevel
so if they actually have a skill level and its not the save as whats saved before then save, helps alot for me but not sure if its the problem of the crash but u never know