DondlFuzzlecutter.lua 732 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/DondlFuzzlecutter.lua
  3. Script Purpose : Dondl Fuzzlecutter <Provisioner>
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. conversation = CreateConversation()
  16. PlayFlavor(NPC, "voiceover/english/dondl_fuzzlecutter/qey_village06/dondlfuzzlecutter000.mp3", "", "", 605011151, 3443405792, Spawn)
  17. AddConversationOption(conversation, "I am not a tinkerer. I don't know. ", "dlg_36_1")
  18. StartConversation(conversation, NPC, Spawn, "...The tract-o-fizzle attaches to the wizgiggler. Or is it the other way around? What do you think my friend?")
  19. end