Skip to content

Commit bcc48f4

Browse files
AWSWCommunityAWSWCommunity
authored andcommitted
Add skeletons for other 3 post true scenes
1 parent a4eb9c1 commit bcc48f4

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
label adine_post_true_bootstrap:
2+
$ c = DynamicCharacter ("persistent.player_name", color=persistent.playercolor, callback=rolly)
3+
$ adinescenesfinished = 4 # Set this to bypass the check for testing.
4+
jump adine_post_true_entry
5+
6+
label adine_post_true_entry:
7+
$ adine_post_mood = 0
8+
9+
if adinescenesfinished != 4:
10+
return
11+
12+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
label bryce_post_true_bootstrap:
2+
$ c = DynamicCharacter ("persistent.player_name", color=persistent.playercolor, callback=rolly)
3+
$ brycescenesfinished = 4 # Set this to bypass the check for testing.
4+
jump bryce_post_true_entry
5+
6+
label bryce_post_true_entry:
7+
if brycescenesfinished != 4:
8+
return
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
label remy_post_true_bootstrap:
2+
$ c = DynamicCharacter ("persistent.player_name", color=persistent.playercolor, callback=rolly)
3+
$ remyscenesfinished = 4 # Set this to bypass the check for testing.
4+
jump remy_post_true_entry
5+
6+
label remy_post_true_entry:
7+
if remyscenesfinished != 4:
8+
return
9+
10+

0 commit comments

Comments
 (0)