Code: Select all
layeredimage bob:
always:
"bobBody.png"
group face:
attribute face1 default "bobface1.png"
attribute face2 "bobface2.png"
label start:
bob "Hello."
show bob face2 with Dissolve(0.4)
bob "Goodbye."
Code: Select all
layeredimage bob:
always:
"bobBody.png"
group face:
attribute face1 default "bobface1.png"
attribute face2 "bobface2.png"
label start:
bob "Hello."
show bob face2 with Dissolve(0.4)
bob "Goodbye."
Code: Select all
action SetField(persistent, "badword", 0)
# would become
action (SetField(persistent, "badword", 0), Return())
# or
action (SetField(persistent, "badword", 0), Jump('next_label'))