arockpawstonemaster.lua 513 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Caves/arockpawstonemaster.lua
  3. Script Purpose : Activate Atramentor (1970035) when this spawn is killed
  4. Script Author : Jabantiz
  5. Script Date : 2/23/2019
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function death(NPC, Spawn)
  14. local Atramentor = GetSpawn(Spawn, 1970035)
  15. if Atramentor ~= nil then
  16. SpawnSet(Atramentor, "attackable", "1")
  17. SpawnSet(Atramentor, "show_level", "1")
  18. end
  19. end