ashadowmanvortexripple.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : ItemScripts/ashadowmanvortexripple.lua
  3. Script Author : AussieGlen/Dorbin
  4. Script Date : 2022.01.01 02:01:18
  5. Script Purpose :
  6. :
  7. --]]
  8. local LoreAndLegendShadowman = 5409
  9. function examined(Item, Player)
  10. local LnLAccept = GetRuleFlagFloat("R_World", "LoreAndLegendAccept")
  11. if LnLAccept > 0 and not HasQuest(Player, LoreAndLegendShadowman) and not HasCompletedQuest(Player, LoreAndLegendShadowman) then
  12. OfferQuest(nil, Player, LoreAndLegendShadowman)
  13. else
  14. conversation = CreateConversation()
  15. if HasQuest(Player, LoreAndLegendShadowman) and GetQuestStepProgress(Player, LoreAndLegendShadowman, 5)==0 then
  16. AddConversationOption(conversation, "Begin to study...", "Step_Complete")
  17. end
  18. AddConversationOption(conversation, "No, put away", "CloseItemConversation")
  19. StartDialogConversation(conversation, 2, Item, Player, "This item can be used to learn the secrets of the shadowman. Do you wish to study it?")
  20. end
  21. end
  22. function Step_Complete(Item, Player)
  23. if HasItem(Player,2636,1) then
  24. SetStepComplete(Player, LoreAndLegendShadowman, 5)
  25. CloseItemConversation(Item, Player)
  26. RemoveItem(Player, 2636)
  27. end
  28. end
  29. function item_description(Item, Spawn)
  30. return "You have already examined this item."
  31. end