overgrowthreport.lua 366 B

123456789101112131415
  1. --[[
  2. Script Name : ItemScripts/overgrowthreport.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.05 08:07:45
  5. Script Purpose :
  6. :
  7. --]]
  8. local OvergrowthImpact = 5298
  9. function examined(Item, Player)
  10. if not HasQuest(Player, OvergrowthImpact) then
  11. OfferQuest(nil, Player, OvergrowthImpact)
  12. end
  13. end