Jump to content

Question

Posted

Hello guys!
I'm having several problems in my emulator, I have been using the latest version available in the svn rathena . But the same is showing errors like:

[Error]: Server received crash signal! Attempting to save all online characters!

I've been reading some tutorials , and found that to learn more about the errors should install GDB , performed the installation of the same as follows:

I went to the home folder

 

I gave the command:

yum install gdb

after that sailed up into the emulator folder and gave the following command:

./configure --enable-debug=gdb
ulimit -c unlimited

Except that when I try to connect the emulator with the command:

./athena-start start

He no longer League the following error:

[Fatal Error]: File not found: conf/inter_athena.conf

And do not turn on the emulator. It did not happen before this , I use a machine with Centos 6.5 64bit system

 

2 answers to this question

Recommended Posts

  • -1
Posted

Acess, map/map.c

 

 

Replace this function

 

 

Quote

 

void do_abort(void)

{
static int run = 0;
//Save all characters and then flush the inter-connection.
if (run) {
ShowFatalError("Server has crashed while trying to save characters. Character data can't be saved!\n");
return;
}
run = 1;
if (!chrif_isconnected())
{
if (pc_db->size(pc_db))
ShowFatalError("Server has crashed without a connection to the char-server, %u characters can't be saved!\n", pc_db->size(pc_db));
return;
}
ShowError("Server received crash signal! Attempting to save all online characters!\n");
map_foreachpc(map_abort_sub);
chrif_flush_fifo();
}

 

 

For this

 

Quote

 

void do_abort(void)

{
 
}

 

 

Reply this post if solved problem

  • 0
Posted
On 7/7/2015 at 11:00 PM, AsiaGenius said:

Acess, map/map.c

 

 

Replace this function

 

 

Quote

 

 

For this

 

Quote

 

 

Reply this post if solved problem

I do this, but still the map-server will crash without showing the error.
How can I locate the reason of map-crash? Any idea sir @AsiaGenius?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...