OverflowManifest.lua 1.1 KB

12345678910111213141516171819
  1. --[[
  2. Script Name : Items/OverflowManifest.lua
  3. Script Purpose : Overflow Manifest
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  6. Script Notes :
  7. --]]
  8. local BARBARIAN_MENTOR_QUEST_2 = 290
  9. function examined(Item, Player)
  10. if HasQuest(Player, BARBARIAN_MENTOR_QUEST_2) and GetQuestStep(Player, BARBARIAN_MENTOR_QUEST_2) == 1 then
  11. SetStepComplete(Player, BARBARIAN_MENTOR_QUEST_2, 1)
  12. end
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "Put the manifest away.", "CloseItemConversation")
  15. StartDialogConversation(conversation, 2, Item, Player, "Overflow Manifest: Graystone Yard\n#3CF0F: Under the small ramp east of the docks.\n#3CF1G: Leaning against the north-wall just east of the docks, near Tacklmaster Moyna.\n#2DF0F: Just north of the most north-eastern building in Graystone, off the lip of the raised platform. #4QGCG: Along the eastern wall, behind the Scribe's shop.\n#CC4QF: Just west of the harbor entrance, near the Mail Kiosk and Bowyer.\n#QGC4F: Outside the bank and its western corner, piled between the raised platform and the wall.")
  16. end