steam.lua 357 B

12345678910111213141516171819
  1. --[[
  2. Script Name : SpawnScripts/BrawlersDojo/steam.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.09.18 12:09:41
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "visual_state",6867)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end