summary refs log tree commit diff stats
path: root/res/scripts/script0001.lua
blob: fcf702964ecf451f647e10bbb342c8a20c7e4fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
function script0001()
  SetAnimation("boney", "barking")
  local barkingNoise = LoopSound("barking_at_hallucination.wav")

  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)
  WaitForEndOfMessage()

  SetAnimation("boney", "crouch")
  StopSound(barkingNoise)
  PlaySound("boney_growl.wav")
  HideCutsceneBars()
end