β¬ 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 rightBottom 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)
- The player succeeds in an action in a Visual Novel.
- An Alert block is placed in the flow to notify it of its reward.
- The
textfield is configured with: `Bravo! You gain {{points}} points.` - The entry point
pointsis connected to the variable containing10. - The notification appears at the top right of the screen: "Congratulations! You win 10 points."
- The flow continues automatically via the out output.
Scenario: System message in a Chatbot
- The user has just completed a step in a chatbot.
- An Alert block is placed in the flow.
- The text
{{step}} completed!appears in the feed in a separate bubble, without a character name. - The flow continues immediately.
βοΈ Technical Details
- Chatbot: template
ChatbotTemplate, presetalert. Inputs:in,text,image. No location β the notification fits into the chat stream. - Visual Novel: template
VisualNovelTemplate, presetalert. Inputs:in,text,content (image),position. Default position:topRight. - Dynamic variables: each
{{VariableName}}in the text generates a connection point of typeText | Number | Boolean. - Non-blocking behavior: the
outoutput is triggered immediately after display.
Updated on: 04/03/2026
Thank you!
