crypt_substance17.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --[[
  2. Script Name : crypt_substance17.lua
  3. Script Purpose : Waypoint Path for crypt_substance17.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 04:09:51 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. local Level = GetLevel(NPC)
  10. local level1 = 5
  11. local level2 = 6
  12. local difficulty1 = 6
  13. local hp1 = 130
  14. local power1 = 65
  15. local difficulty2 = 6
  16. local hp2 = 150
  17. local power2 = 80
  18. if Level == level1 then
  19. SpawnSet(NPC, "difficulty", difficulty1)
  20. SpawnSet(NPC, "hp", hp1)
  21. SpawnSet(NPC, "power", power1)
  22. elseif Level == level2
  23. then
  24. SpawnSet(NPC, "difficulty", difficulty2)
  25. SpawnSet(NPC, "hp", hp2)
  26. SpawnSet(NPC, "power", power2)
  27. end
  28. waypoints(NPC)
  29. end
  30. function hailed(NPC, Spawn)
  31. FaceTarget(NPC, Spawn)
  32. end
  33. function respawn(NPC)
  34. spawn(NPC)
  35. end
  36. function waypoints(NPC)
  37. MovementLoopAddLocation(NPC, -156.74, -0.08, -127.03, 1, math.random(0,10))
  38. MovementLoopAddLocation(NPC, -157.23, -0.15, -111.53, 1, math.random(0,10))
  39. MovementLoopAddLocation(NPC, -156.26, 0.49, -107.53, 1, math.random(0,10))
  40. MovementLoopAddLocation(NPC, -149.68, -0.1, -92.05, 1, math.random(0,10))
  41. MovementLoopAddLocation(NPC, -143.19, -0.08, -78.86, 1, math.random(0,10))
  42. MovementLoopAddLocation(NPC, -146.02, -0.04, -85.06, 1, math.random(0,10))
  43. MovementLoopAddLocation(NPC, -162.28, -0.24, -76.88, 1, math.random(0,10))
  44. MovementLoopAddLocation(NPC, -168.37, -0.29, -74.12, 1, math.random(0,10))
  45. MovementLoopAddLocation(NPC, -162.28, -0.24, -76.88, 1, math.random(0,10))
  46. MovementLoopAddLocation(NPC, -146.02, -0.04, -85.06, 1, math.random(0,10))
  47. MovementLoopAddLocation(NPC, -143.19, -0.08, -78.86, 1, math.random(0,10))
  48. MovementLoopAddLocation(NPC, -149.68, -0.1, -92.05, 1, math.random(0,10))
  49. MovementLoopAddLocation(NPC, -156.26, 0.49, -107.53, 1, math.random(0,10))
  50. MovementLoopAddLocation(NPC, -157.23, -0.15, -111.53, 1, math.random(0,10))
  51. MovementLoopAddLocation(NPC, -156.74, -0.08, -127.03, 1, math.random(0,10))
  52. end