Announce a follow to chat and Discord
Medium
Graph structure (text alternative)
Trigger: onFollow
Nodes:
- On Follow
(entry.onFollow) - Text
(data.literal.string) - Send Chat Message
(action.sendChat) - Discord: Send Message
(discord.sendMessage) - Return
(flow.return)
Connections:
- On Follow.out → Send Chat Message.in
- Text.value → Send Chat Message.text
- Send Chat Message.out → Discord: Send Message.in
- On Follow.displayName → Discord: Send Message.message
- Discord: Send Message.out → Return.in
Walkthrough
Announce a new follower in two places at once.
How it works
- On Follow fires when someone follows, binding their display name.
- Send Chat Message thanks them publicly in chat.
- Discord: Send Message posts the follower's name to your Discord server, so mods see it even when chat is busy.
One trigger, two different results across two platforms: a simple fan-out. See On Follow and Discord: Send Message.
