123456789101112131415161718 |
- --[[
- Script Name : SpawnScripts/The Estate of Unrest/gamepiece2.lua
- Script Author : neatz09
- Script Date : 2021.01.01 12:01:50
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- end
- function casted_on(NPC, Spawn, Message)
- if Message == "Pick up game pawn" then
- SummonItem(Spawn, 8599, 1)
- Despawn(NPC)
- end
- end
|