Players command not working when more than 20 players onlineSolved
Hello, first of all thank you for improving this really interesting script.

However I have a problem, maybe isolated or maybe general:

When my server has more than 25-30 players the command !Players no longer works. I feel like there is too much information to generate.

The DiscordStatus bot has administrator rights on the Discord server and therefore is not limited by slow mode so I think the problem is with the script.

Thank you in advance for your answer and good luck!
just reload it 
its been an issue for a long time now.

Bonsoir Tomhud, merci pour votre réponse mais j'ai déjà rechargé le script, désinstallé et réinstallé le plugin et il y a eu aussi plusieurs redémarrages automatiques du serveur. Mon problème est présent puisque le script permet d'en faire un! Joueurs sur Discord. (Édité)

Sorry for my basic english

This is a situation that I also know.

There is an error when requesting a player if there are more than 28 players because the Steam Profile link is included.

First of all, I am thinking of another way.

Merged post

189 line edit

foreach (var player in playerList)
{
        list += $"[{player.displayName}](https://steamcommunity.com/profiles/{player.UserIDString}/)\n";
}

-> 

foreach (var player in playerList)
{
        list += $"{player.displayName}\n";
}
Hello UNKNOWN,

I just replaced the line in question and can again use the !Players command on Discord. A big thank-you !

Too bad to lose the Steam link, but sometimes you have to know how to sacrifice functionality for it to work.

Thanks again, I hope a future update will fix the problem without losing the Steam link :)

Your plugin is very useful!
DaddyCool
Hello UNKNOWN,

I just replaced the line in question and can again use the !Players command on Discord. A big thank-you !

Too bad to lose the Steam link, but sometimes you have to know how to sacrifice functionality for it to work.

Thanks again, I hope a future update will fix the problem without losing the Steam link :)

Your plugin is very useful!

The problem is that when there are many people, a lot of messages can appear.

Locked automatically