-
I need the bot to play background music for my virtual tabletop game. This gives me a handful of what I imagined were pretty basic requirements:
Is there a more efficient way of doing this? Or of chaining commands together through aliases, or through eval commands? Are there any docs for eval? I'm familiar with javascript (though this doesn't appear to be a js eval we're talking about) and Java, but not with the internal workings of discord or this bot, or the Java Discord API. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The closest to what you want is probably: |
Beta Was this translation helpful? Give feedback.
The closest to what you want is probably:
Run
repeat on
to make sure that the bot is in repeating mode (you only need to do this once; this setting is saved on a per-server basis)To move to a new song, run
play <song>
and thenskip
to start playing it immediately.