ChuggleValvesplitter.lua 962 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/TempleStreetOld/ChuggleValvesplitter.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.29 09:06:14
  5. Script Purpose :
  6. Script Notes : full dialogue is missing
  7. --]]
  8. local ChugglesToolbox = 483
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. if GetQuestStep(Spawn, ChugglesToolbox) == 2 then
  14. conversation = CreateConversation()
  15. StartConversation(conversation, NPC, Spawn, "Sorry, sorry. What is it? I can''t really help out much since those local 858 union members stole my blasted toolbox!")
  16. AddConversationOption(conversation, "I have found your toolbox", "complete")
  17. PlayFlavor(NPC, "voiceover/english/chuggle_valvesplitter/fprt_hood03/hail_chuggle000.mp3", "", "", 986790684, 3595790226, Spawn)
  18. end
  19. end
  20. function complete(NPC, Spawn)
  21. SetStepComplete(Spawn, ChugglesToolbox, 2)
  22. end
  23. function respawn(NPC)
  24. spawn(NPC)
  25. end