frontdoorkey02.lua 386 B

123456789101112131415161718
  1. --[[
  2. Script Name : SpawnScripts/The Estate of Unrest/frontdoorkey02.lua
  3. Script Author : neatz09
  4. Script Date : 2020.12.29 12:12:05
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, Message)
  11. if Message == "Pick up key part" then
  12. SummonItem(Spawn, 15114, 1)
  13. Despawn(NPC)
  14. end
  15. end