Hey,
Briefly, I wanna create a command callled '!bowling' and i want nightbot to respond two messages in a row. First respond is 'message1' and second respond to activate another command (!bowling2). I don't have that much knowledge about alias and i wanted to ask here.
Here is full explanation and you guys can get my intention:
viewer: !bowling
nightbot(message1): $(user) → 🎳🎳🎳🎳🎳
nightbot(message2): !bowling2
!bowling2 is:
$(eval var simgeler = ["💥", "🎳"]; var sonuc = ""; for (var i = 0; i < 5; i++) { sonuc += simgeler[Math.floor(Math.random() * simgeler.length)] + " "; } sonuc)
this image explains what nightbot should respond with 2 messages.
this image explains the !bowling2 logic

