failsafechest.lua 408 B

123456789101112131415161718
  1. --[[
  2. Script Name : SpawnScripts/The Estate of Unrest/failsafechest.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.31 11:12:07
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, Message)
  11. if Message == "Try to recover a lost progression item" then
  12. SummonItem(Spawn, 8677, 1)
  13. Despawn(NPC)
  14. end
  15. end