We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1db10c commit 41e30a4Copy full SHA for 41e30a4
resources/ecs/contact.ecs
@@ -0,0 +1,25 @@
1
+! Contacts
2
+
3
+ script Contacts
4
5
+ import module Showdown
6
7
+ variable Script
8
+ variable Message
9
10
+ rest get Script from `/resources/codex/md/contact.md`
11
12
+ on message
13
+ begin
14
+ put the message into Message
15
+ if Message is `restore` send `show` to parent
16
+ else if Message is `pause` begin end
17
+ else go to Start
18
+ end
19
20
+ set ready
21
+ stop
22
23
+Start:
24
+ send Script to Showdown
25
0 commit comments