Skip to content

Counter

Counter for loop control with conditional outputs.

  • Maintains a count that decrements each execution
  • Outputs “continue” while count > 0
  • Outputs “finished” when count reaches 0
  • Auto-resets for next loop
OptionTypeDescription
Counter IDTextUnique identifier (for multiple counters)
Count TypeSelectfixed or random
Fixed CountNumberExact iterations (default: 5)
Min CountNumberMinimum iterations (for random)
Max CountNumberMaximum iterations (for random)
  • continue → Count > 0, loop should repeat
  • finished → Count = 0, loop complete

🖼️ [Image: Workflow showing Counter looping through Like Post → Swipe, then exiting to End when finished]

StartCounter (5x)

  • 🔁 continue → Like Post → Swipe (next post) → (back to Counter)
  • finished → End
  • Creating loops with specific iteration counts
  • Limiting actions per session
  • Randomizing loop lengths