[HELP]World Server Crash

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 3, 2007
Messages
48
Reaction score
0
Hey,
i have a problem..
my world server is carshing if i start it up..
in this order : login.exe , char.exe , world.exe ..

i use the reV80.
Please help me =)

Thank u, BlinD
 
At what point does it crash?
What error messages do you get?
If it is crashing during boot up, try doing a print screen just before it goes off. This helps identify the point at which it is dying.
You will most likely need to add a bit of debugging script into startup.cpp so you can see exactly where the problem is coming from.
 
this is the error:



[ at the beginning.. when i want to start the server ]
 
Ah you are using fullserver rev 80.

When you said rev 80, I assumed (apparently wrongly) that you were using osrose rev 80
I am not familiar with the fullserver code.
I don't even now if it is more or less the same as osrose source.

Either way though, it appear to be going wrong while loading spawn zones so you should take a look in startup code and find the place where this is loaded. (osrose would be startup.cpp bool CWorldServer::LoadRespawnData( ))
This function reads data from your database so the problem is most likely a bad value somewhere.

The best way to approach this would be to add a bit of debug code into the main loading loop.
The loop should start with a line of code that looks something like this
Code:
while( row = mysql_fetch_row(result) )
{
just after this try adding the following..
Code:
Log(MSG_DEBUG, "Adding spawn area %i",atoi(row[0] );
Recompile your server then start it up again.
As each zone starts to load, a debug message will be displayed with the ID number of that zone.
Once you figure out which zone is causing your problem we can investigate that one a little further.
Check your database entry...
Check any errors in code at this point.

You could also run your server in debug mode to see if it highlights any code errors.
 
ok.. but now i have another problem..
on my server there are the standard rates, but i kill 100 mobs and no one drop zuly?! +
pease help :)
 
There are loads of threads on both of those subjects.

Also as I've said so many times before. We can't help until you tell us what server and client versions you are running.

Client shutting down when buying stuff means your client STBs do no match your server STB/SQL/CSV (dufferent servers use any or all of these. That's why we need more information about your configuration)
The fix is simple. Take the STB data from your client and put them into your server.

Zuly drops?
Again, very very server specific. I've fixed this hundreds of times for various people on various servers. But I can't fix it without knowing what code you are using.
 
Unfortunately osrose rev 80 is the most awkward one to fix the STBs in.
It uses CSVs ratehr than the actual STB files as osirose does.

That means you need to use an STB to CSV utility to convert them over then put the CSVs in the "data" folder of your server.

You can find all the tools to do this here.

There are tools there to extract your STBs and to convert them to CSV format

As for the Zuly drop?
Check this thread where I just explained to somebody else how to fix it in rev 80
http://forum.ragezone.com/showthread.php?t=436626
 
hi,
i copyt the H:\RoseServer\Triggersoft\Rose Online Evolution\3Ddata\stb\ *all csv's*
into H:\RoseServer\Rose Server\data\*i overwrite the csv'S*

and now when i want to buy anything ther client shuting down too

Thank You for help
Korny
 
Status
Not open for further replies.
Back