Jump to content
  • 0

map server crash


Nihility

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  11/25/13
  • Last Seen:  

The problem is when I go to a certain map like somewhere in west of prontera or some random map my map-server crashes.When I relogin I got a message "Rejected from server". I disabled all cutom npc, and even changed ragexe from 20130807 to 20141022 but still crashes. I got same problem in my linux server.

 

This is the error from my vps
 XsirkA.png

 

Here are some screenshots in VS
 

1PS5OQ.png


 

ROyLDt.png

Edited by Nihility
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  11/25/13
  • Last Seen:  

I made a new database and started a new server and replaced the said function but still it didn't work. Thanks anyways

ZN60ro.png

 

It crashed then restarted 

6kqGjI.png


Consider this post fixed. The solution is I cloned the latest rathena repo from github. Maybe I messed up something that is why it crashes. Sorry about this.

Edited by Nihility
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  108
  • Reputation:   17
  • Joined:  01/23/14
  • Last Seen:  

Acess, map/map.c

 

 

Replace this function

 

 

 

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

 

 

void do_abort(void)

{
 
}

 

 

Reply this post if solved problem

Link to comment
Share on other sites

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.

×
×
  • Create New...