|
@@ -0,0 +1,38 @@
|
|
|
+# sleep_reflections
|
|
|
+
|
|
|
+if $ARGS[0] = 'event_check':
|
|
|
+ if test_var = 1: $sleep_events_priority[] = 'gs ''sleep_reflections'', ''test_reflection'' '
|
|
|
+
|
|
|
+end
|
|
|
+
|
|
|
+if $ARGS[0] = 'end':
|
|
|
+ gs 'pre_sleep_events', 'event_end'
|
|
|
+end
|
|
|
+
|
|
|
+if $ARGS[0] = 'test_reflection':
|
|
|
+ if ARGS[1] = 0: gt 'sleep_reflections', 'test_reflection', 1
|
|
|
+
|
|
|
+ 'This is a test reflection!'
|
|
|
+ 'Sveta is thinking deeply about "TEST_PERSON"'
|
|
|
+ 'Wow, what interesting thoughts'
|
|
|
+
|
|
|
+ act 'positive':
|
|
|
+ *clr & cla
|
|
|
+ test_var = 2
|
|
|
+ 'You think positive things about "TEST_PERSON"!'
|
|
|
+
|
|
|
+ act 'Go to sleep': killvar 'test_var' & gs 'sleep_reflections', 'end'
|
|
|
+ end
|
|
|
+ act 'negative':
|
|
|
+ *clr & cla
|
|
|
+ test_var = -1
|
|
|
+ 'You think negative things about "TEST_PERSON"!'
|
|
|
+
|
|
|
+ act 'Go to sleep': killvar 'test_var' & gs 'sleep_reflections', 'end'
|
|
|
+ end
|
|
|
+ act 'ignore': killvar 'test_var' & gs 'sleep_reflections', 'end'
|
|
|
+
|
|
|
+end
|
|
|
+
|
|
|
+
|
|
|
+--- sleep_reflections ---------------------------------
|