anoldkey.lua 394 B

123456789101112131415
  1. --[[
  2. Script Name : ItemScripts/anoldkey.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.16 03:07:29
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheSewerItKey = 5321
  9. function examined(Item, Player)
  10. if not HasQuest(Player, TheSewerItKey) and not HasCompletedQuest(Player, TheSewerItKey) then
  11. OfferQuest(nil, Player, TheSewerItKey)
  12. end
  13. end