List + editlist command

hey, is there a readily available way to make (these are place holder commands and responses for the purpose of asking this question) a command like !list which returns “list : item1 item2 item3” which you can then add to with “editlist item4” to add the new entry, and then keep using it to add to the expanding list without editing the edit command?

That is unfortunately not easily possible at this time, sorry.

1 Like

This can be done with this quote system: [CustomAPI] Quote system

Because these commands contain private tokens, you should add them through the Nightbot web interface: https://beta.nightbot.tv/commands/custom.

Go to https://twitch.center/customapi/quote/generate. You will see three lines. Your first token is after token= and before &data= on the first line. Your second token is after token= and before &data= on the second and third lines. Replace FIRSTTOKEN and SECONDTOKEN with these before you add the following commands.

!list
$(urlfetch http://twitch.center/customapi/quote/list?token=FIRSTTOKEN&no_id=1)

!editlist
$(urlfetch http://twitch.center/customapi/addquote?token=SECONDTOKEN&data=$(querystring $(query) ))

!clearlist
$(urlfetch http://twitch.center/customapi/delquote?token=SECONDTOKEN&clear=1)

You may want to set the userlevels for !editlist and !clearlist to Moderator.

thank you for the reply

this does work, to an extent. When i try to edit the “list” (which i have set as drops) i get an error, however it does still work, just annoying to have that message pop up whenever you try to add to the list

It looks like you set the alias for !newdrop to !commands. Go to https://beta.nightbot.tv/commands/custom and delete everything from the alias field for !newdrop.

ugh yeah im dumb, i had it set to that from previous experiments, again thank you very much dude you are a legend

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.