Reply to a !hello command
Basic
Graph structure (text alternative)
Trigger: onChatCommand
Nodes:
- On Chat Command
(entry.onChatCommand) - Text
(data.literal.string) - Reply to Chatter
(action.reply) - Return
(flow.return)
Connections:
- On Chat Command.out → Reply to Chatter.in
- Text.value → Reply to Chatter.text
- Reply to Chatter.out → Return.in
Walkthrough
This flow greets anyone who types !hello in chat.
How it works
- On Chat Command fires when a message is the
!hellocommand (the!prefix plus the word). - The Text node holds the greeting to send.
- Reply to Chatter posts the greeting in-thread, as a reply to the command message.
- Return ends the flow.
Make it your own
Want to gate it to subscribers? Set the command node's minimum role to Subscriber+. Prefer a normal chat message over a threaded reply? Swap Reply to Chatter for Send Chat Message.
See On Chat Command for every field the trigger binds.
