gameboardnote.lua 380 B

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