ABookOfGnollishOrders.lua 686 B

123456789101112131415161718
  1. --[[
  2. Script Name : ItemScripts/ABookOfGnollishOrders.lua
  3. Script Purpose : A Book of Gnollish Orders
  4. Script Author : Scatman
  5. Script Date : 2009.10.08
  6. Script Notes :
  7. --]]
  8. local QUEST_1_CONSULBREE = 361
  9. function examined(Item, Player)
  10. if HasQuest(Player, QUEST_1_CONSULBREE) and GetQuestStep(Player, QUEST_1_CONSULBREE) == 2 then
  11. SetStepComplete(Player, QUEST_1_CONSULBREE, 2)
  12. end
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "Put the book away.")
  15. StartDialogConversation(conversation, 2, Item, Player, "This is the book of gnollish orders that Bree was searching for. There is a symbol on each page of a paw held to an eye.")
  16. end