aminotaurtooth.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : ItemScripts/aminotaurtooth.lua
  3. Script Author : AussieGlen
  4. Script Date : 2022.01.02 07:01:47
  5. Script Purpose :
  6. :
  7. --]]
  8. local LoreAndLegendMinotaur = 5423
  9. function examined(Item, Player)
  10. if not HasQuest(Player, LoreAndLegendMinotaur) and not HasCompletedQuest(Player, LoreAndLegendMinotaur) then
  11. OfferQuest(nil, Player, LoreAndLegendMinotaur)
  12. elseif not QuestStepIsComplete(Player, LoreAndLegendMinotaur, 7) then
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "Begin to study...", "Step_Complete")
  15. AddConversationOption(conversation, "No, put away", "CloseItemConversation")
  16. StartDialogConversation(conversation, 2, Item, Player, "This item can be used to learn the secrets of the minotaur. Do you wish to study it?")
  17. end
  18. end
  19. function Step_Complete(Item, Player)
  20. SetStepComplete(Player, LoreAndLegendMinotaur, 7)
  21. RemoveItem(Player, 2252)
  22. end
  23. function item_description(Item, Spawn)
  24. return "You have already examined this item."
  25. end