So, I’m trying to make a command that triggers based on a tag in my stream to then display every 10 minutes through the timers.
Right now, my thought would be to do something like:
$(eval if $(querystring($(twitch tags “WhateverTagName”)) == “WhateverTagName”){ println(“Whatever Text Set Here”); } else{ null;})
Or
$(eval if (querystring($(twitch tags “WhateverTagName”) )== “WhateverTagName”){ !somecommandname; } else{ null;})
I’m just not sure if that would work correctly
The setup currently is a timer to execute the first command.
!isinleaguematch
Which has the eval code.
Then there is the command it executes after if the criteria are met.
Not sure if it’s right tho
