aGuttersnipecrookPath7.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : SpawnScripts/TheSprawl_Classic/aGuttersnipecrookPath7.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.11.10 08:11:23
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. dofile ("SpawnScripts/Generic/MonsterCallouts/Guttersnipe.lua")
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. human(NPC)
  13. waypoints(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end
  21. function waypoints(NPC)
  22. MovementLoopAddLocation(NPC, -111.88, -4.23, 109.26, 2, math.random(8,15))
  23. MovementLoopAddLocation(NPC, -111.88, -4.23, 109.26, 2, 0)
  24. MovementLoopAddLocation(NPC, -114.55, -4.21, 107.69, 2, math.random(8,15))
  25. MovementLoopAddLocation(NPC, -114.55, -4.21, 107.69, 2, 0)
  26. MovementLoopAddLocation(NPC, -109.62, -4.24, 109.14, 2, 0)
  27. MovementLoopAddLocation(NPC, -94.82, -4.24, 109.43, 2, math.random(8,15))
  28. MovementLoopAddLocation(NPC, -94.82, -4.24, 109.43, 2, 0)
  29. MovementLoopAddLocation(NPC, -98.01, -4.24, 108.9, 2, math.random(8,15))
  30. MovementLoopAddLocation(NPC, -98.01, -4.24, 108.9, 2, 0)
  31. MovementLoopAddLocation(NPC, -100.72, -4.41, 105.04, 2, math.random(8,15))
  32. MovementLoopAddLocation(NPC, -100.72, -4.41, 105.04, 2, 0)
  33. MovementLoopAddLocation(NPC, -99.36, -4.24, 108.39, 2, 0)
  34. MovementLoopAddLocation(NPC, -93.67, -4.24, 111.07, 2, math.random(8,15))
  35. MovementLoopAddLocation(NPC, -93.67, -4.24, 111.07, 2, 0)
  36. MovementLoopAddLocation(NPC, -99.3, -4.24, 112.69, 2, 0)
  37. MovementLoopAddLocation(NPC, -102.32, -4.42, 117.96, 2, math.random(8,15))
  38. MovementLoopAddLocation(NPC, -102.32, -4.42, 117.96, 2, 0)
  39. MovementLoopAddLocation(NPC, -101.23, -4.24, 112.48, 2, 0)
  40. MovementLoopAddLocation(NPC, -102.58, -4.24, 111.2, 2, 0)
  41. MovementLoopAddLocation(NPC, -113.67, -4.22, 108.44, 2, math.random(8,15))
  42. MovementLoopAddLocation(NPC, -113.67, -4.22, 108.44, 2, 0)
  43. MovementLoopAddLocation(NPC, -113.29, -4.22, 110.43, 2, 0)
  44. MovementLoopAddLocation(NPC, -115.09, -4.35, 113.3, 2, math.random(8,15))
  45. MovementLoopAddLocation(NPC, -115.09, -4.35, 113.3, 2, 0)
  46. MovementLoopAddLocation(NPC, -112.75, -4.23, 110.67, 2, 0)
  47. MovementLoopAddLocation(NPC, -100.01, -4.24, 110.09, 2, math.random(8,15))
  48. MovementLoopAddLocation(NPC, -100.01, -4.24, 110.09, 2, 0)
  49. end