abrokenmusicbox.lua 449 B

123456789101112131415
  1. --[[
  2. Script Name : ItemScripts/abrokenmusicbox.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.25 06:06:14
  5. Script Purpose :
  6. :
  7. --]]
  8. local RewardForAMissingMusicBox = 5261
  9. function examined(Item, Player)
  10. if not HasQuest(Player, RewardForAMissingMusicBox) and not HasCompletedQuest(Player, RewardForAMissingMusicBox) then
  11. OfferQuest(nil, Player, RewardForAMissingMusicBox)
  12. end
  13. end