Qura Posted March 18, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 21 Reputation: 3 Joined: 03/18/16 Last Seen: February 3, 2024 Share Posted March 18, 2016 Hello guys. I've search many topic regarding this crashed, but it seems none from this new client 2015-10-29aRagexe. 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? 1 Quote Link to comment Share on other sites More sharing options...
0 renniw Posted March 18, 2016 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 19 Reputation: 3 Joined: 11/26/11 Last Seen: March 29 Share Posted March 18, 2016 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); } 2 Quote Link to comment Share on other sites More sharing options...
0 Lord Ganja Posted March 18, 2016 Group: Members Topic Count: 141 Topics Per Day: 0.03 Content Count: 444 Reputation: 22 Joined: 06/18/12 Last Seen: August 11, 2018 Share Posted March 18, 2016 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. 1 Quote Link to comment Share on other sites More sharing options...
0 Napster Posted March 18, 2016 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted March 18, 2016 you can revert this ?https://github.com/rathena/rathena/commit/aea025eand test again 1 Quote Link to comment Share on other sites More sharing options...
0 Qura Posted March 18, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 21 Reputation: 3 Joined: 03/18/16 Last Seen: February 3, 2024 Author Share Posted March 18, 2016 (edited) 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/aea025eand 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 If it still happened, is there any other solution? Edited March 18, 2016 by Qura Quote Link to comment Share on other sites More sharing options...
0 Freyr Posted March 18, 2016 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 38 Reputation: 7 Joined: 01/11/13 Last Seen: March 5, 2021 Share Posted March 18, 2016 (edited) 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 March 18, 2016 by Freyr Quote Link to comment Share on other sites More sharing options...
0 a91323 Posted March 18, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 99 Reputation: 10 Joined: 01/13/12 Last Seen: December 6, 2020 Share Posted March 18, 2016 @renniw thank you is work fine for me enter the game Quote Link to comment Share on other sites More sharing options...
0 Qura Posted March 18, 2016 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 21 Reputation: 3 Joined: 03/18/16 Last Seen: February 3, 2024 Author Share Posted March 18, 2016 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! Quote Link to comment Share on other sites More sharing options...
0 Vincentore Posted March 20, 2016 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 60 Reputation: 33 Joined: 02/17/15 Last Seen: January 28, 2024 Share Posted March 20, 2016 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 : ) Quote Link to comment Share on other sites More sharing options...
Question
Qura
Hello guys.
I've search many topic regarding this crashed, but it seems none from this new client 2015-10-29aRagexe.
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.
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?
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?
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.