KargIcemoore.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. local TheMotleyMerchantManifest = 5368
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. conversation = CreateConversation()
  17. PlayFlavor(NPC, "voiceover/english/icemoore/qey_village03/icemoore000.mp3", "", "no", 2067185427, 1499529819, Spawn)
  18. if GetQuestStep(Spawn, TheMotleyMerchantManifest) == 5 then
  19. AddConversationOption(conversation, "I believe you need to sign this manifest. ", "Option1")
  20. end
  21. AddConversationOption(conversation, "I'll look around.")
  22. 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.")
  23. end
  24. function Option1(NPC, Spawn)
  25. SetStepComplete(Spawn, TheMotleyMerchantManifest, 5)
  26. FaceTarget(NPC, Spawn)
  27. local conversation = CreateConversation()
  28. PlayFlavor(NPC, "voiceover/english/icemoore/qey_village03/icemoore001.mp3", "", "frustrated", 3923754329, 1864701403, Spawn)
  29. AddConversationOption(conversation, "I will be leaving now.")
  30. StartConversation(conversation, NPC, Spawn, "Brell save me! Keep that book lowered. I don't need the Guard marchin' in and findin' me doing business with yer type. ")
  31. end