-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CS# alternative #8
Comments
Yes, I know that is possible. I didn't make it because I heard CSSharp had some memory leak when using with it. If you can confirm it does not, I can make CSSharp version if anyone interested. |
Heyy I'm revealing the ranks that way on my public server since the UserMessages were implemented in CS# and didn't see any issues(the ram usage never goes up to infinity for example) related to leaking memory. On the other hand, can I ask you to tell me what you know about the UM memory leak reports that you are referring to, as I'm noticing an issue with the plugins below and after the plugins that use UserMessages(hooking/sending) after the server runs for prolonged times and seems that the GC overreacts when clearing unused references to List/Dictionaries? Kind regards, |
My friend was saying that people are facing issue performance issue when using this. Also send message user as well has performance issues not depending on which user message sent. But if not, all gucci |
Please make a CS# version of this. |
Tested now, with 25+ players 1.5gb ram usage more, and slow frame 100ms+ bcs of usermessage |
Heyoo, if the plugin is still activelly used it can be created in CS# as well via sending the UserMessage. Here's an example for Ontick:
//extended player buttons enum
private enum PlayerButtonsExt : ulong
{
ScoreBoard = 8589934592
}
//on tick:
if (player.Buttons == (PlayerButtons)PlayerButtonsExt.ScoreBoard) {
}
The text was updated successfully, but these errors were encountered: