Skip to main content
Corvus Connection

Reply to a !hello command

Basic
When a viewer types !hello, reply in-thread with a greeting, then end the flow.
On Chat CommandoutcommandargsargCountusermessageTextvalueReply to ChatterintextoutReturnin
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

  1. On Chat Command fires when a message is the !hello command (the ! prefix plus the word).
  2. The Text node holds the greeting to send.
  3. Reply to Chatter posts the greeting in-thread, as a reply to the command message.
  4. 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.

Uses these nodes