TheNewTTS icon indicating copy to clipboard operation
TheNewTTS copied to clipboard

Not enough money message even though cost is set to 0

Open panoc opened this issue 3 years ago • 2 comments

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.

panoc avatar Mar 04 '21 16:03 panoc

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

panoc avatar Mar 04 '21 17:03 panoc

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

SuggarHidden avatar Mar 22 '21 07:03 SuggarHidden