Hi, I’m currently trying to create a command for a fellow streamer.
The goal of the command is to “!bless” an indicated viewer (using the @ in chat). This is what I have so far.
$(display_name) blesses $twitch(display_name,$arg(1)) with the power of Delareg! +$cmd_count(XXXXX) speed
XXXXX being command ID
^This^ however only counts the TOTAL amount of times !bless is used, however I was wondering whether it is possible to distinguish this count on whoever “$twitch(display_name,$arg(1))” is.
My thought was maybe using some kind of custom data but using the username as the definition, creating a seperate custom data for each user automatically.
$custom_data(get, $twitch(display_name,$arg(1))) to define the data as their username
$custom_data(+,$twitch(display_name,$arg(1))) to add +1
^This^ does not work
Is something like this possible without creating 100 different $custom_data sets for each viewer?
Thanks!!