Help with my !funfact command

Hi guys, total n00b here. I have created my !funfact command following some templates I found on these boards for joke bots, 8-ball bots, etc. It’s not working, I get the same [Response must be less than 400 characters] error that other people have had, but none of their remedies is working for me. Can anyone help me figure this out?

$(eval var facts = “$(urlfetch https://pastebin.com/raw/nSNNj5tA) “.split(”;”); facts[Math.floor(Math.random() * (facts.length - 1))]:wink:

Hiya, your command was close, you can avoid the character limit by adding json to the urlfetch variable:

$(eval facts= "$(urlfetch json https://pastebin.com/raw/nSNNj5tA)".split(";"); facts[Math.floor(Math.random() * (facts.length - 1))])

thank you so much, @xgerhard! It works!

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