Level4Difficulty2Size28_8.lua 531 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Generic/Level4Difficulty2Size28_8.lua
  3. Script Purpose : Level set to 4 and and difficulty to 2
  4. Script Author : Rylec
  5. Script Date : 04-19-2020 02:18:22
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "4")
  10. SpawnSet(NPC, "difficulty", "2")
  11. SpawnSet(NPC, "size", "28.8")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end