Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Topic started by: Alice on January 20, 2015, 06:42:34 am

Title: [QUESTION] Problem with Worldserver
Post by: Alice on January 20, 2015, 06:42:34 am
Greetings. I am having a problem with wordlserver. WorldServer works well at first load without problems. But eventually crash and tells me the following error.

(http://s20.postimg.org/okm06iv7h/Mod_error.png) (http://postimage.org/)
subir foto (http://postimage.org/index.php?lang=spanish)

Try to solve it by changing minimal_diff> = 0 to inimal_diff> = 1, but it has not worked.

Anyone know how to fix this? Thanks in advance.
Title: Re: [QUESTION] Problem with Worldserver
Post by: Amaroth on January 20, 2015, 01:13:30 pm
Well, were you doing something with your core? It would be usefull to know what were you doing before this started happening.
Title: Re: [QUESTION] Problem with Worldserver
Post by: Alice on January 21, 2015, 06:36:21 am
I created and changed some scripts with Truice, to make custom items. Also i removed fatigue fom the core.

That's all.
Title: Re: [QUESTION] Problem with Worldserver
Post by: Alice on January 23, 2015, 11:31:52 am
Well, I've been researching on google and apparently I must track the issue by debug. But how i do that?
Title: Re: [QUESTION] Problem with Worldserver
Post by: Magnus on January 24, 2015, 10:03:24 pm
Debugging c++ code isn't an easy task except you are a professional programmer and familar with debugging tools like IDE Visual Studio.

I would recommed doing one of this ways:
Go back in what you have done in the past. F. ex. delete the items in your DB if you think it's an item problem. Or change back the code in your core if you modified it.

The other way: Set up an new fresh core and DB and try to add your changes step by step.

As you have an assertion error in MoveSpline.cpp you also can study the code there and think about in general if you have changed something with movement. Removing fatigue could be such a thing.
Title: Re: [QUESTION] Problem with Worldserver
Post by: Alice on January 25, 2015, 10:02:06 am
Thanks for that. I'll see what i can do.