Jump to content
  • 0

Char select crashed using Client 2015-10-29aRagexe. Just for trial. Any solution guys for this new Client?


Qura

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   3
  • Joined:  03/18/16
  • Last Seen:  

Hello guys.

 

I've search many topic regarding this crashed, but it seems none from this new client 2015-10-29aRagexe.

post-37962-0-58207900-1458289485_thumb.png

So I decided to make a post regarding this topic.

 

My char select page is not responding after server selection, when using Client 2015-10-29aRagexe.

It seems my Server was running well. So I guess, it has something to do with Client side.

 

Before

 

After

 

 

 

Sorry for my noobs questions.

 

1. Is it because of i'm not updating the right rsu-lite? (I've updated the rsu-RenewalLite)

Refering to some topics, they said I've to update the rsu-lite. So with my client of 2015-10-29aRagexe, which rsu-lite I've to update?

Either RagLite or RenewalLite?

First and foremost, does this error has something coorelated between client Ragexe and rsu?

 
2. Or it has something to do with the patched?
I've patched using NEMO. And select these features.
 
1. @Bug Fix
2. Always Call SelectKoreaClientInfo()
3. Cancel to Login Window
4. Disable 1rag1 type parameters
5. Disable Game Guard
6. Disable Help Message on Login
7. Disable Nagle Algorithm
8. Disable Ragexe Filename
9. Enable /showname
10. Enable /who command
11. Enable DNS
12. Enable Multiple GRFs
13. Fix Camera Angles
14. Read msgstringtable.txt
15. Read questid2display.txt
16. Remove Gravity Ads
17. Gravity Logo
18. Remove Hourly Announce
19. Remove Serial Display
20. Restore Login Window
21. Translate Client
22. Use Ascii on All LangTypes
23. Use Normal Guild Brackets
24. Use Plant Text Descriptions

 

In addition, I've edited some of the:

1. PACKETVER in mmo.h (20151029). 

2. Changed the packet_key_ver in packet_db.txt to 54. 
3. And, set the servertype to primary in clientinfo.xml (Client side).

 

So, is there anything that I missed? Or, any solution for this?

post-37962-0-58207900-1458289485_thumb.png

  • Upvote 1
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  19
  • Reputation:   3
  • Joined:  11/26/11
  • Last Seen:  

Please Use This code.

it will be fixed your problem.

//----------------------------------------
// Tell client how many pages, kRO sends 17 (Yommy)
//----------------------------------------
void chclif_charlist_notify( int fd, struct char_session_data* sd ){
	WFIFOHEAD(fd, 6);
	WFIFOW(fd, 0) = 0x9a0;
	// pages to req / send them all in 1 until mmo_chars_fromsql can split them up
	WFIFOL(fd, 2) = (sd->char_slots>3)?sd->char_slots/3:1; //int TotalCnt (nb page to load)
	WFIFOSET(fd,6);
}

 

  • Upvote 2
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  141
  • Topics Per Day:  0.03
  • Content Count:  444
  • Reputation:   22
  • Joined:  06/18/12
  • Last Seen:  

Did you used the kRO from nickyzai? I experience client crashing when I used the kro from nickyzai.

 

After I tried this one. LINK

 

I didn't encounter crashing anymore.

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  196
  • Reputation:   72
  • Joined:  12/12/11
  • Last Seen:  

you can revert this ?

https://github.com/rathena/rathena/commit/aea025e

and test again

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   3
  • Joined:  03/18/16
  • Last Seen:  

Lord Ganja,

 

Did you used the kRO from nickyzai? I experience client crashing when I used the kro from nickyzai.

 

After I tried this one. LINK

 

I didn't encounter crashing anymore.

 

Ya, If I'm not mistaken, I'm using the one from NickyZai (Full_kRO_Renewal_20160124.exe).
I'll try the one from Azeroth's post. And I'll infrom the progress.
 
 
Napster,

 

you can revert this ?

https://github.com/rathena/rathena/commit/aea025e

and test again

 
Thank you for the respond.
Actually, I'm using server the one from https://github.com/rathena/rathena. By which having the same coding as in src/char/char_clif.c
 
post-37962-0-57116000-1458313306_thumb.png

 

If it still happened, is there any other solution?

post-37962-0-57116000-1458313306_thumb.png

Edited by Qura
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  38
  • Reputation:   7
  • Joined:  01/11/13
  • Last Seen:  

Hello, I had the same issue and I could fix it by changing my servertype and servicetype in my clientinfo.xml

 

<servicetype>america</servicetype>

<servertype>sakray</servertype>

 

OR

 

<servicetype>korea</servicetype>

<servertype>primary</servertype>

Edited by Freyr
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  99
  • Reputation:   10
  • Joined:  01/13/12
  • Last Seen:  

@renniw

thank you

is work fine for me enter the game

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   3
  • Joined:  03/18/16
  • Last Seen:  

Renniw,

 

 

Please Use This code.

it will be fixed your problem.

//----------------------------------------
// Tell client how many pages, kRO sends 17 (Yommy)
//----------------------------------------
void chclif_charlist_notify( int fd, struct char_session_data* sd ){
	WFIFOHEAD(fd, 6);
	WFIFOW(fd, 0) = 0x9a0;
	// pages to req / send them all in 1 until mmo_chars_fromsql can split them up
	WFIFOL(fd, 2) = (sd->char_slots>3)?sd->char_slots/3:1; //int TotalCnt (nb page to load)
	WFIFOSET(fd,6);
}

 

Haha, thank you. Its worked!

Having problem with black-background in map iz_int02 (new char spawn point). I'll search the solution somewhere in this rAthena forum.

Anyway, thank you guys (Lord Ganja, Napster, Renniw) for the help and immediate response! 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  60
  • Reputation:   33
  • Joined:  02/17/15
  • Last Seen:  

Renniw,

 

 

Please Use This code.

it will be fixed your problem.

//----------------------------------------
// Tell client how many pages, kRO sends 17 (Yommy)
//----------------------------------------
void chclif_charlist_notify( int fd, struct char_session_data* sd ){
	WFIFOHEAD(fd, 6);
	WFIFOW(fd, 0) = 0x9a0;
	// pages to req / send them all in 1 until mmo_chars_fromsql can split them up
	WFIFOL(fd, 2) = (sd->char_slots>3)?sd->char_slots/3:1; //int TotalCnt (nb page to load)
	WFIFOSET(fd,6);
}

 

Haha, thank you. Its worked!

Having problem with black-background in map iz_int02 (new char spawn point). I'll search the solution somewhere in this rAthena forum.

Anyway, thank you guys (Lord Ganja, Napster, Renniw) for the help and immediate response! 

 

Yeah! Works for me aswell! Thanks buds : )

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...