Jump to content
  • 0
chaosclate

I need help

Question

6 answers to this question

Recommended Posts

  • 0
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 by Mael
Link to comment
Share on other sites

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

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.