KargIcemoore.lua 770 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Graystone/KargIcemoore.lua
  3. Script Purpose : Karg Icemoore
  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/icemoore/qey_village03/icemoore000.mp3", "", "", 2067185427, 1499529819, Spawn)
  17. AddConversationOption(conversation, "I'll look around.")
  18. StartConversation(conversation, NPC, Spawn, "Welcome to the Frozen Tundra, finest brewhall in all of Qeynos--no--finest brewhall in all of Norrath!! Belly up to Coppershot. He'll get yer order.")
  19. end