summary refs log tree commit diff stats
path: root/res/scripts/script0001.lua
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-12 00:33:19 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-12 00:33:19 -0500
commit5ecd0f428dd8292a17c5013c525a4f5d3967acb8 (patch)
tree0068b66a1183f822909f115a142fae3869a3b09f /res/scripts/script0001.lua
parent19be2ac58b09c5240a32e6a4f41cd9f6cda03d07 (diff)
downloadtanetane-5ecd0f428dd8292a17c5013c525a4f5d3967acb8.tar.gz
tanetane-5ecd0f428dd8292a17c5013c525a4f5d3967acb8.tar.bz2
tanetane-5ecd0f428dd8292a17c5013c525a4f5d3967acb8.zip
Scripts are organised per-map now
Diffstat (limited to 'res/scripts/script0001.lua')
-rw-r--r--res/scripts/script0001.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/res/scripts/script0001.lua b/res/scripts/script0001.lua deleted file mode 100644 index bf6a0c2..0000000 --- a/res/scripts/script0001.lua +++ /dev/null
@@ -1,24 +0,0 @@
1function script0001()
2 StartCutscene()
3 SetAnimation("boney", "barking")
4 local barkingNoise = LoopSound("barking_at_hallucination.wav")
5
6 SetAnimation("flint", "talk")
7 DisplayMessage("* Lucas. It's me, Flint. Your father.\n\f* I found Claus. He's here. After three years I've finally found your brother.\n\fAre you ready to see him again?", "Flint", SpeakerType.MAN)
8 ShowChoice("Yes", "No")
9 WaitForEndOfMessage()
10
11 SetAnimation("boney", "crouch")
12 StopSound(barkingNoise)
13 PlaySound("boney_growl.wav")
14
15 if GetChoiceSelection() == 0 then
16 DisplayMessage("* I can hear the tremor in your voice, Lucas.\n\fLies are little games a mouth plays while the person attached withers away slowly.\n\fClaus is coming, whether you like it or not.\nWill you be able to look him in the eye?", "Flint", SpeakerType.MAN)
17 else
18 DisplayMessage("* Look at me when I'm talking to you, Lucas.\n\f* When Claus gets home, we won't need you anymore.\nYou're nothing compared to him.", "Flint", SpeakerType.MAN)
19 end
20
21 WaitForEndOfMessage()
22 SetAnimation("flint", "still")
23 HideCutsceneBars()
24end