Jump to content
  • 0

I need help


chaosclate

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/19
  • Last Seen:  

 

 

how do I put the number of players online here?

suporte.png

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.01
  • Content Count:  233
  • Reputation:   50
  • Joined:  12/20/18
  • Last Seen:  

you can modified it in msgstringtable.txt

or try this : alteration source

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/19
  • Last Seen:  

what i modify in msgstringtable.txt ?


 
Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  832
  • Reputation:   317
  • Joined:  02/11/19
  • Last Seen:  

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

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/19
  • Last Seen:  

hexed 2018-06-21 rathena october 2019

 

git hash 6e85937638819d8fa90dd8a2bf7e08629cba1704

Edited by chaosclate
Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  832
  • Reputation:   317
  • Joined:  02/11/19
  • Last Seen:  

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

  • 0

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  02/13/19
  • Last Seen:  

Thanks for helper

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