plaguereport.lua 448 B

123456789101112131415161718
  1. --[[
  2. Script Name : ItemScripts/plaguereport.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.01 09:07:22
  5. Script Purpose :
  6. :
  7. --]]
  8. local EliminationOfTheInfected = 5271
  9. function examined(Item, Player)
  10. if not HasQuest(Player, EliminationOfTheInfected) and not HasCompletedQuest(Player, EliminationOfTheInfected) then
  11. OfferQuest(nil, Player, EliminationOfTheInfected)
  12. end
  13. end