Jump to content
  • 0

Question

6 answers to this question

Recommended Posts

  • 0
Posted (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 by Mael
more info
  • Upvote 1

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...