tutorialdrake.lua 427 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/thunderdome/tutorialdrake.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.07.31 08:07:05
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. AddTimer(NPC,3000,"hailed")
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. SendStateCommand(NPC, 10783) -- attack
  14. -- SendStateCommand(NPC, 65)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end