Advertisement
Jopo2010

Untitled

Mar 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. @name Better Hyperdrive Chip
  2. @inputs Hyperdrive:wirelink
  3. @outputs
  4. @persist Origin:vector
  5. interval(1000)
  6. runOnChat(1)
  7. Last=owner():lastSaid():explode(" ")
  8. Shakuras = vec(9702.406,-7896.531,-8035.687), #Cordinate 1
  9. Kobol = vec(-9242.531,8016.375,187.625), #Cordinate 2
  10. Spacestation = vec(8363.188,6143.313,7198.150), #Cordinate 3
  11. Topspace = vec(4720.094,1450.750,9795.500), #Cordinate 4
  12. Bottomspace = vec(-3503.187,995.906,-8811.406), #Cordinate 5
  13. Sun = vec(-13116.973,-13073.250,14008.250), #Cordinate 6
  14. ShakurasO = vec(3674.281,-2112.469,-7115.656) #Cordinate 7
  15. Asteroidbase = vec(-8509.750,-9802.875,-9465.156) #Cordinate 8
  16. Lava = vec(1152.000,7046.969,-9398.312) #Cordinate 9
  17. Ash = vec(-6145.281,-1809.781,11134.531) #Cordinate 10
  18. Shoosh = vec(12035.938,12105.844,13173.781) #Cordinate 11
  19. Volcano = vec(-8708.062,-9006.469,1561.281) #Cordinate 12
  20. Hyperdrive["Radius",normal] = 100000
  21. if(chatClk(owner())&lastSaid()=="/jump Shakuras"){
  22. Jump = 1
  23. Hyperdrive["Destination",vector] = Shakuras
  24. hideChat(1)
  25. }
  26. if(chatClk(owner())&lastSaid()=="/jump Kobol"){
  27. Jump = 1
  28. Hyperdrive["Destination",vector] = Kobol
  29. hideChat(1)
  30. }
  31. if(chatClk(owner())&lastSaid()=="/jump Space Station"){
  32. Jump = 1
  33. Hyperdrive["Destination",vector] = Spacestation
  34. hideChat(1)
  35. }
  36. if(chatClk(owner())&lastSaid()=="/jump Top Space"){
  37. Jump = 1
  38. Hyperdrive["Destination",vector] = Topspace
  39. hideChat(1)
  40. }
  41. if(chatClk(owner())&lastSaid()=="/jump Bottom Space"){
  42. Jump = 1
  43. Hyperdrive["Destination",vector] = Bottomspace
  44. hideChat(1)
  45. }
  46. if(chatClk(owner())&lastSaid()=="/jump Sun"){
  47. Jump = 1
  48. Hyperdrive["Destination",vector] = Sun
  49. hideChat(1)
  50. }
  51. if(chatClk(owner())&lastSaid()=="/jump Shakuras Orbit"){
  52. Jump = 1
  53. Hyperdrive["Destination",vector] = ShakurasO
  54. hideChat(1)
  55. }
  56. if(chatClk(owner())&lastSaid()=="/jump Asteroid Base"){
  57. Jump = 1
  58. Hyperdrive["Destination",vector] = Asteroidbase
  59. hideChat(1)
  60. }
  61. if(chatClk(owner())&lastSaid()=="/jump Lava"){
  62. Jump = 1
  63. Hyperdrive["Destination",vector] = Lava
  64. hideChat(1)
  65. }
  66. if(chatClk(owner())&lastSaid()=="/jump Ash"){
  67. Jump = 1
  68. Hyperdrive["Destination",vector] = Ash
  69. hideChat(1)
  70. }
  71. if(chatClk(owner())&lastSaid()=="/jump Shoosh"){
  72. Jump = 1
  73. Hyperdrive["Destination",vector] = Shoosh
  74. hideChat(1)
  75. }
  76. if(chatClk(owner())&lastSaid()=="/jump Volcano"){
  77. Jump = 1
  78. Hyperdrive["Destination",vector] = Volcano
  79. hideChat(1)
  80. }
  81. if(Jump == 1){
  82. Hyperdrive["Warp",normal] = 1
  83. }
  84. else{
  85. Hyperdrive["Warp",normal] = 0
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement