ZanhassMossclean.lua 690 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/WillowWood/ZanhassMossclean.lua
  3. Script Purpose : Zanhass Mossclean <Mender>
  4. Script Author : Scatman
  5. Script Date : 2009.09.15
  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/mender_zanhass_mossclean/qey_village05/quests/mender_zanhass_mossclean/mender_zanhass_mossclean001.mp3", "", "", 4061695239, 3048259898, Spawn)
  17. AddConversationOption(conversation, "Never mind.")
  18. StartConversation(conversation, NPC, Spawn, "Well, well, what have we here? Can I help you?")
  19. end