FishingHook.lua 383 B

12345678910111213141516
  1. --[[
  2. Script Name : ItemScripts/FishingHook.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.10.30 09:10:47
  5. Script Purpose :
  6. :
  7. --]]
  8. local BlowingOffSteam = 5387 -- Blowing off Steam quest
  9. function examined(Item, Player)
  10. if not HasQuest(Player, BlowingOffSteam) then
  11. OfferQuest(nil, Player, BlowingOffSteam)
  12. end
  13. end