Difficulty2.lua 421 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/Generic/Difficulty2.lua
  3. Script Purpose : Difficulty set 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, "difficulty", "2")
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end