summary refs log tree commit diff stats
path: root/res/scripts/script0001.lua
diff options
context:
space:
mode:
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