BootstruttersFieldGuidetotheCommonlands.lua 588 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : ItemScripts/BootstruttersFieldGuidetotheCommonlands.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.31 03:05:55
  5. Script Purpose :
  6. :
  7. --]]
  8. local ATouroftheCommonlands = 5248
  9. function examined(Item, Player)
  10. if not HasQuest(Player, ATouroftheCommonlands) and not HasCompletedQuest(Player, ATouroftheCommonlands) then
  11. OfferQuest(nil, Player, ATouroftheCommonlands)
  12. end
  13. end
  14. function obtained(Item, Player)
  15. if HasCompletedQuest(Player, ATouroftheCommonlands) then
  16. RemoveItem(Player, 4518)
  17. end
  18. end