TheLegendaryGreaterLightstone.lua 994 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : ItemScripts/TheLegendaryGreaterLightstone.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.08.24 06:08:12
  5. Script Purpose :
  6. :
  7. --]]
  8. local GreaterLightstoneID = 156891
  9. local TheLegendaryGreaterLightstoneID = 66100
  10. function examined(Item, Player)
  11. conversation = CreateConversation()
  12. AddConversationOption(conversation, "Remove stone from the mounting)", "removestone")
  13. AddConversationOption(conversation, "Leave the stone alone", "CloseItemConversation")
  14. StartDialogConversation(conversation, 2, Item, Player, "Greater Lightstone. By following the directions of Cannix Silverflame, I was able to increase the power of the lightstone gradually. Cannix says this object has some importance among his people, too bad he isn't around anymore so I can ask him about it...")
  15. end
  16. function removestone(Item, Player)
  17. RemoveItem(Player, TheLegendaryGreaterLightstoneID)
  18. SummonItem(Player, GreaterLightstoneID)
  19. end