GruffinGoldtooth.lua 854 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Graystone/GruffinGoldtooth.lua
  3. Script Purpose : Gruffin Goldtooth
  4. Script Author : John Adams
  5. Script Date : 2008.09.21
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  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/gruffin_goldtooth/qey_village03/gruffingoldtooth001.mp3", "", "", 997482113, 2338709603, Spawn)
  17. AddConversationOption(conversation, "I'll leave you to your work.")
  18. StartConversation(conversation, NPC, Spawn, "Hey there, young 'in. Don't mind ole' Gruffin. I'm just inspecting these here mineral veins. This bedrock is going to be especially useful for building new homes for refugees and citizens alike.")
  19. end