Please help!Solved

How i can remove this? i don't want the bot to call it or even to show up
"HomeTPAmount": "You have {0} home teleports left today!",

set the limit to 0 so they have unlimited teleports.

otherwise you can't prevent it from showing

I've changed this for you so in the next update 1.5.6 you can set the message to "" and it will stop it from showing. but for now it won't work.

"HomeTPAmount": "",​

nivex i can fix it from the main plugin?

        private void PrintMsg(BasePlayer player, string msg)
        {
            if (player == null || string.IsNullOrEmpty(msg)) return;
            Player.Message(player, $"{config.Settings.ChatName}{msg}", config.Settings.ChatID);
        }

find that and replace it

Thank you nivex <3

Locked automatically