TheNewTTS
TheNewTTS copied to clipboard
Not enough money message even though cost is set to 0
Although i set cost to 0, new users get the no enough currency message, permission is set to everyone. They have to wait to gain some currency in order to use the command.
i had to edit TheNewTTS_StreamlabsSystem.py and remove the lines
if not Parent.RemovePoints(data.User, data.UserName, SETTINGS["cost"]): Parent.SendStreamMessage(SETTINGS["msg_cost"]) return if not data.GetParam(1): Parent.SendStreamMessage("You need to specify a message") return
in order for the script to completely ignore currency
The easiest way to solve this problem is: Open the folder where the script is located, open the file "TheNewTTS_StreamlabsSystem" and delete the following line of code:
if not Parent.RemovePoints(data.User, data.UserName, SETTINGS["cost"]):
Parent.SendStreamMessage(SETTINGS["msg_cost"])
return