Jump to content
  • 0

Rejected from Server Issue..


Ronald

Question


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  241
  • Reputation:   18
  • Joined:  06/04/14
  • Last Seen:  

When I connect it shows the players who are logged in rAthena(playercount) then after another login rAthena(0) though some players and currently logged in then we encounter rejected from server wherein the server is currently up.

Login Char and Map Server are Up.

 

packet_db

packet_db_ver: 31

 

mmo.h 20120418

 

clif.h

enum { // packet DB
    MAX_PACKET_DB  = 0xf00,
    MAX_PACKET_VER = 31,
    MAX_PACKET_POS = 20,
};

 

Everything is correct. How come we encounter this. :( Please help..

 

Thank you guys!

Edited by Ronald
Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  241
  • Reputation:   18
  • Joined:  06/04/14
  • Last Seen:  

Read carefully Ma'am Heartbreak :) I've posted all the details. Hehe.

 

Anyway this is already solved. It's like wrong src modification so I used my back up files in order to make it work again.

Edited by Ronald
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  846
  • Reputation:   136
  • Joined:  02/26/14
  • Last Seen:  

When I connect it shows the players who are logged in rAthena(playercount) then after another login rAthena(0) though some players and currently logged in then we also encounter rejected from server while some players are connected some cannot.

 

packet_db

packet_db_ver: 31

 

mmo.h 20120418

 

clif.h

enum { // packet DB

    MAX_PACKET_DB  = 0xf00,

    MAX_PACKET_VER = 31,

    MAX_PACKET_POS = 20,

};

 

Everything is correct. How come we encounter this. :( Please help..

 

Thank you guys!

What about your clientinfo.xml?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  76
  • Topics Per Day:  0.02
  • Content Count:  202
  • Reputation:   2
  • Joined:  07/09/12
  • Last Seen:  

I also experiencing this error.


Here's my clientinfo sir pnuema 
 

<?xml version="1.0" encoding="euc-kr" ?>

<clientinfo>
<servicetype>korea</servicetype>
<servertype>sakray</servertype>
   <connection>
      <display>Vague Ragnarok Reborn</display>
      <balloon>the balloon</balloon>
      <desc>description</desc>
      <address>xx.xx.xxx.xxx</address>
      <port>6900</port>
      <version>31</version>
      <langtype>10</langtype>
      <registrationweb>https://wanhosting.net</registrationweb>
        <aid>
            <admin>2000000</admin>
<admin>2000001</admin>
<admin>2000002</admin>
<admin>2000039</admin>
<admin>2000040</admin>
<admin>2000042</admin>
<admin>2000043</admin>
<admin>2000044</admin>
<admin>2000046</admin>
<admin>2000047</admin>
<admin>2000048</admin>
<admin>2000050</admin>
<admin>2000051</admin>
<admin>2000052</admin>
<admin>2000727</admin>
<admin>2001727</admin>
<admin>2001728</admin>
<admin>2001729</admin>
<admin>2001730</admin>
<admin>2001731</admin>
<admin>2001732</admin>
<admin>2001733</admin>
<admin>2001734</admin>
<admin>2001735</admin>
<admin>2001736</admin>
<admin>2002085</admin>
<admin>2001562</admin>
<admin>2002699</admin>
<admin>2002700</admin>
<admin>2002701</admin>
<admin>2002702</admin>
<admin>2002703</admin>
<admin>2002704</admin>
<admin>2002705</admin>
<admin>2002706</admin>
<admin>2002707</admin>
<admin>2002708</admin>
        </aid>
        <loading>
            <image>loadingscreen01.jpg</image>
        </loading>
   </connection>
</clientinfo>
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  241
  • Reputation:   18
  • Joined:  06/04/14
  • Last Seen:  

<version>31</version>
      <langtype>10</langtype>

Everything is fine in the clientinfo Sir.

But in putty I see that player is trying to connect with version 0 wherein the inputted version in clientinfo is 31. Which is right. >.<

Same thing with me when I connect at the server it says I try to connect at version 0 where in in my clientinfo it is 31

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  846
  • Reputation:   136
  • Joined:  02/26/14
  • Last Seen:  

<version>31</version>

      <langtype>10</langtype>

Everything is fine in the clientinfo Sir.

But in putty I see that player is trying to connect with version 0 wherein the inputted version in clientinfo is 31. Which is right. >.<

Same thing with me when I connect at the server it says I try to connect at version 0 where in in my clientinfo it is 31

Try setting your langtype to 1 instead of 10 and see if that changes anything

 

Also put :

enum { // packet DB
	MAX_PACKET_DB  = 0xf00,
	MAX_PACKET_VER = 31,
	MAX_PACKET_POS = 20,
};

back to

enum { // packet DB
	MAX_PACKET_DB  = 0xf00,
	MAX_PACKET_VER = 46,
	MAX_PACKET_POS = 20,
};

There was no need to change that.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  241
  • Reputation:   18
  • Joined:  06/04/14
  • Last Seen:  

I did that but same error. Thanks anyway sir!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  63
  • Reputation:   0
  • Joined:  12/02/12
  • Last Seen:  

did u check ur trunk/db/packet_db.txt ?

make sure to add packet ver 31.. like this:

http://trac.rathena.org/browser/rathena/trunk/db/packet_db.txt?rev=17326

Edited by Heartbreak
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...