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.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/res/scripts/script0001.lua b/res/scripts/script0001.lua index e5078f2..077e809 100644 --- a/res/scripts/script0001.lua +++ b/res/scripts/script0001.lua
@@ -3,11 +3,19 @@ function script0001()
3 SetAnimation("boney", "barking") 3 SetAnimation("boney", "barking")
4 local barkingNoise = LoopSound("barking_at_hallucination.wav") 4 local barkingNoise = LoopSound("barking_at_hallucination.wav")
5 5
6 DisplayMessage("Lucas. It's me, Flint. Your father.\n\fI found Claus. He's here. After three years I've finally found your brother.\n\fLook at me when I'm talking to you, Lucas.\n\fWhen Claus gets home, we won't need you anymore.\nYou're nothing compared to him.", "Flint", SpeakerType.MAN) 6 DisplayMessage("Lucas. It's me, Flint. Your father.\n\fI 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)
7 ShowChoice("Yes", "No")
7 WaitForEndOfMessage() 8 WaitForEndOfMessage()
8 9
9 SetAnimation("boney", "crouch") 10 SetAnimation("boney", "crouch")
10 StopSound(barkingNoise) 11 StopSound(barkingNoise)
11 PlaySound("boney_growl.wav") 12 PlaySound("boney_growl.wav")
13
14 if GetChoiceSelection() == 0 then
15 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)
16 else
17 DisplayMessage("Look at me when I'm talking to you, Lucas.\n\fWhen Claus gets home, we won't need you anymore.\nYou're nothing compared to him.", "Flint", SpeakerType.MAN)
18 end
19
12 HideCutsceneBars() 20 HideCutsceneBars()
13end 21end