aDifficultEarthforgottenguardian.lua 521 B

12345678910111213141516171819
  1. --[[
  2. Script Name : SpawnScripts/Classic_forest/aDifficultEarthforgottenguardian.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.10.15 03:10:46
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGolem1.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. SetSpawnAnimation(NPC, 13016)
  13. RandomMovement(NPC, Spawn, 7, -7, 2, 8, 15)
  14. end
  15. function respawn(NPC, Spawn)
  16. spawn(NPC)
  17. end