• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Evolution - 7.92 XML - how to track crashes?

qndel

New Member
Joined
Dec 26, 2009
Messages
38
Reaction score
4
Server: Evolution 7.92 XML
Mingw 3.4.2
Dev C++ 4.9.9.2
OS: Windows XP

How can I know what caused the crash? I don't understand anything from the crash log, how can I make the log display the exact line in the code that caused the crash?
 
Last edited:
Server: Evolution 7.92
Mingw 3.4.2
Dev C++ 4.9.9.2
OS: Windows XP

How can I know what caused the crash? I don't understand anything from the crash log, how can I make the log display the exact line in the code that caused the crash?
Code:
START /wait cmd /c "filename.exe >> log.txt"
 
I was playing with debugger and I managed to get this:
http://pastebin.com/T1aFpFGC
Is it of any use?

Also using your method to start the server hasn't really given anything special :(

"
Error: generating report file...
Error report generated. Closing server.
"
thats what I got from it when I crashed the server
 
Last edited:
0x92d7698 Protocol79::ReceiveLoop()(0x544668)
0x92dacf0 Commands::giveAccess(Creature*, std::string const&, std::string const&)(0x42fc5a
you gaved someone access ? I remember there was tool for evo otses where you could connect with the database and do stuff like outside consol
 
its XML, sorry for not mentioning it earlier, I forgot that everyone are using SQL haha :p
 
Last edited:
I was playing with debugger and I managed to get this:
http://pastebin.com/T1aFpFGC
Is it of any use?

Also using your method to start the server hasn't really given anything special :(

"
Error: generating report file...
Error report generated. Closing server.
"
thats what I got from it when I crashed the server
It is a batch script, it logs the exe to a text file, anything more than that you might need to edit the source.
 
Server: Evolution 7.92 XML
Mingw 3.4.2
Dev C++ 4.9.9.2
OS: Windows XP

How can I know what caused the crash? I don't understand anything from the crash log, how can I make the log display the exact line in the code that caused the crash?
Remove rpc debugging. (atleast is what I found in google, you can research about it just search the exception "0xc0000096"):
http://stackoverflow.com/questions/89607/what-is-a-privileged-instruction
http://stackoverflow.com/questions/...ultiple-instances-of-0xc0000096-privileged-in


But... Why XML? :/
 
Last edited:
Back
Top