PungentGounds.lua 487 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : ItemScripts/PungentGounds.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.04 09:07:53
  5. Script Purpose :
  6. :
  7. --]]
  8. local MurkwaterCoffee = 5281
  9. local ItemID = 11140
  10. function examined(Item, Player)
  11. if not HasQuest(Player, MurkwaterCoffee) then
  12. OfferQuest(nil, Player, MurkwaterCoffee)
  13. end
  14. end
  15. function obtained(Item, Player)
  16. if GetItemCount(Item) > 1 then
  17. RemoveItem(Player, ItemID)
  18. end
  19. end