EngineerVeebert.lua 807 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/TheThievesWay_Classic/EngineerVeebert.lua
  3. Script Author : dorbin
  4. Script Date : 2024.01.05 09:01:29
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. function spawn(NPC)
  10. SetInfoStructString(NPC, "action_state", "tapfoot")
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. Dialog.New(NPC, Spawn)
  15. Dialog.AddDialog("Get out of the way! Get OUT OF THE WAY! I need to keep this clanking-heap working!")
  16. Dialog.AddVoiceover("voiceover/english/engineer_veebert/fprt_sewer01/quests/engineerveebert000.mp3", 3787332000, 2245703769)
  17. PlayFlavor(NPC, "", "", "frustrated", 0, 0, Spawn, 0)
  18. Dialog.AddOption("Okay! I'm going!")
  19. Dialog.Start()
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end