Xephyras Posted August 31, 2012 Posted August 31, 2012 (edited) At the Server Selection screen (client side), there is a (0) showing next to the server name (which shows the number of players online). For example: SampleRO(76) How do I delete that so that only the server name shows? Thanks in advance! Edited August 31, 2012 by Xephyras Quote
clydelion Posted August 31, 2012 Posted August 31, 2012 It is hardcoded to the client.. But you can force it to display 0 always.. Index: login.c =================================================================== --- login.c (revision 16690) +++ login.c (working copy) @@ -1197,7 +1197,7 @@ WFIFOL(fd,47+n*32) = htonl((subnet_char_ip) ? subnet_char_ip : server[i].ip); WFIFOW(fd,47+n*32+4) = ntows(htons(server[i].port)); // [!] LE byte order here [!] memcpy(WFIFOP(fd,47+n*32+6), server[i].name, 20); - WFIFOW(fd,47+n*32+26) = server[i].users; + WFIFOW(fd,47+n*32+26) = 0; WFIFOW(fd,47+n*32+28) = server[i].type; WFIFOW(fd,47+n*32+30) = server[i].new_; n++; Quote
Emistry Posted August 31, 2012 Posted August 31, 2012 you can also try refer this topic.. last 2 posts... change langtype / edit msgstringtable http://rathena.org/b...service-select/ Quote
Xephyras Posted August 31, 2012 Author Posted August 31, 2012 (edited) So there is no easier way in rAthena to remove that? Edited August 31, 2012 by Xephyras Quote
Emistry Posted August 31, 2012 Posted August 31, 2012 lol..what way you want then ? all are just a simply edit on required files.....not even take you 30 seconds to edit any of these files... Quote
Xephyras Posted August 31, 2012 Author Posted August 31, 2012 Hahaha, true that. No I was just wondering, because it seemed pretty easy to remove in eAthena. But anyway, thanks a lot for the effort guys! Appreciated it very much! Quote
Xephyras Posted August 31, 2012 Author Posted August 31, 2012 Well, I haven't used eAthena for years right now, so I forgot... But all I remember is that in eAthena you only had to change a value to remove it, but that might have been changed too perhaps. Solved it by replacing (%d)# with # in "msgstringtable" Quote
Question
Xephyras
At the Server Selection screen (client side), there is a (0) showing next to the server name (which shows the number of players online).
For example:
SampleRO(76)
How do I delete that so that only the server name shows?
Thanks in advance!
Edited by Xephyras7 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.