This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Screen Commands
Arguments | Result | Notation |
---|---|---|
Message and Coordinates | n1 i1 i2 – |
Displays a message in the User Interface at coordinates (i1,i2) in pixels. The message will disappear next frame so you'll have to call it every frame.
Unlike ShowMessage, the message will have an X in the upper right corner that the player can click.
Until WasMessageDismissed is called after the message is dismissed by the user, no message dismissible will show again.
once 0 ->mode endonce if (<-mode eq(0)) ShowMessageDismissible("Close this message!\n(After you're done reading it.)" -1 60) if (WasMessageDismissed) 1 ->mode PlaySound("Retro22") endif endif