chaosclate Posted February 21, 2020 Posted February 21, 2020 how do I put the number of players online here? Quote
0 LOOLP - OFF Posted February 21, 2020 Posted February 21, 2020 you can modified it in msgstringtable.txt or try this : alteration source Quote
0 chaosclate Posted February 21, 2020 Author Posted February 21, 2020 what i modify in msgstringtable.txt ? Quote
0 Mael Posted February 21, 2020 Posted February 21, 2020 (edited) 5 hours ago, dev LOOLP said: you can modified it in msgstringtable.txt or try this : alteration source This requires a modification to the client and source. Which date are you using? @chaosclate Edited February 21, 2020 by Mael Quote
0 chaosclate Posted February 21, 2020 Author Posted February 21, 2020 (edited) hexed 2018-06-21 rathena october 2019 git hash 6e85937638819d8fa90dd8a2bf7e08629cba1704 Edited February 21, 2020 by chaosclate Quote
0 Mael Posted February 21, 2020 Posted February 21, 2020 (edited) 6 minutes ago, chaosclate said: hexed 2018-06-21 rathena october 2019 git hash 6e85937638819d8fa90dd8a2bf7e08629cba1704 Use this client exe and patch it. 2018-06-21aRagexeRE.zip But first modify this in src/login/login.cpp int login_get_usercount( int users ){ #if PACKETVER >= 20170726 if( login_config.usercount_disable ){ return 4; // Removes count and colorization completely }else if( users <= login_config.usercount_low ){ return 0; // Green => Smooth }else if( users <= login_config.usercount_medium ){ return 1; // Yellow => Normal }else if( users <= login_config.usercount_high ){ return 2; // Red => Busy }else{ return 3; // Purple => Crowded } #else return users; #endif } and change it like this: int login_get_usercount( int users ){ return users; } Credits: @Functor Edited February 21, 2020 by Mael more info 1 Quote
Question
chaosclate
how do I put the number of players online here?![]()
![]()
![]()
6 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.