Articles on: Blocks Creator
This article is also available in:

⬛ Alert

⬜ Alert


The Alert block allows you to display a rich text message (Markdown) with an optional image. Its visual behavior differs depending on the template used:


  • Template Chatbot: the message is displayed in the discussion feed, in a bubble with a style distinct from classic dialogues, without character name.
  • Visual Novel Template: the message is displayed as a notification positioned on the screen, above the interface, in the chosen location.


In both cases, the flow continues automatically without waiting for user interaction.


πŸ“₯ Entries


  • in (Flow): Triggers the display of the alert.
  • text (HTML): Text of the alert, edited via the integrated editor which generates HTML (rendering is done in raw HTML). You can insert dynamic variables between double braces (eg: {{score}}). Each variable used automatically generates an additional entry point on the block, to be connected to the corresponding variable (Text, Number or Boolean).
  • image (Image, Optional): Image to display in the notification.
  • position (Enum, Visual Novel only): Location of the on-screen notification. 9 positions available:
    • Top left / Top center / Top right (default)
    • Middle left / Center / Middle right
    • Bottom left / Bottom center / Bottom right


πŸ“€ Outings


  • out (Flow): Activates immediately after displaying the alert. The flow continues without waiting for interaction.


πŸ’‘ Example of use


Scenario: Notification of winning points (Visual Novel)


  1. The player succeeds in an action in a Visual Novel.
  2. An Alert block is placed in the flow to notify it of its reward.
  3. The text field is configured with: `Bravo! You gain {{points}} points.`
  4. The entry point points is connected to the variable containing 10.
  5. The notification appears at the top right of the screen: "Congratulations! You win 10 points."
  6. The flow continues automatically via the out output.


Scenario: System message in a Chatbot


  1. The user has just completed a step in a chatbot.
  2. An Alert block is placed in the flow.
  3. The text {{step}} completed! appears in the feed in a separate bubble, without a character name.
  4. The flow continues immediately.


βš™οΈ Technical Details

  • Chatbot: template ChatbotTemplate, preset alert. Inputs: in, text, image. No location β€” the notification fits into the chat stream.
  • Visual Novel: template VisualNovelTemplate, preset alert. Inputs: in, text, content (image), position. Default position: topRight.
  • Dynamic variables: each {{VariableName}} in the text generates a connection point of type Text | Number | Boolean.
  • Non-blocking behavior: the out output is triggered immediately after display.

Updated on: 04/03/2026

Was this article helpful?

Share your feedback

Cancel

Thank you!