Skip to main content
Corvus Connection

Thank big cheers

Medium
When a viewer cheers 100 bits or more, send an extra thank-you to chat.
On CheeroutdisplayNamebitsmessageisAnonymousNumbervalueNumber Greater ThanleftrightvalueIfinconditionthenelseTextvalueSend Chat MessageintextoutReturnin
Graph structure (text alternative)

Trigger: onCheer

Nodes:

  • On Cheer (entry.onCheer)
  • Number (data.literal.int)
  • Number Greater Than (compare.intGreater)
  • If (flow.if)
  • Text (data.literal.string)
  • Send Chat Message (action.sendChat)
  • Return (flow.return)

Connections:

  • On Cheer.bits → Number Greater Than.left
  • Number.value → Number Greater Than.right
  • Number Greater Than.value → If.condition
  • On Cheer.out → If.in
  • If.then → Send Chat Message.in
  • Text.value → Send Chat Message.text
  • Send Chat Message.out → Return.in
  • If.else → Return.in

Walkthrough

Give an extra shout to viewers who cheer big.

How it works

  1. On Cheer fires on any bits cheer, binding the bits amount.
  2. Number Greater Than compares the bits to 99, so 100+ counts as a big cheer.
  3. If branches on that result: the then path sends the thank-you, the else path ends quietly.
  4. Send Chat Message posts the message only for big cheers.

Raise or lower the threshold by editing the Number node. See On Cheer for the fields it binds.

Uses these nodes