Advertisement
drabont

Stationeers - AIMEe Go-Go Dancer

Sep 23rd, 2019
2,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #= AIMEe Go-Go Dancer = v0.1 ========= by swagman =#
  2. #     _____  .___   _____  ___________             #
  3. #    /  _  \ |   | /     \ \_   _____/ ____        #
  4. #   /  /_\  \|   |/  \ /  \ |    __)__/ __ \       #
  5. #  /    |    \   /    Y    \|        \  ___/       #
  6. #  \____|__  /___\____|__  /_______  /\___  >      #
  7. #          \/            \/        \/     \/       #
  8. #    ________                   ________           #
  9. #   /  _____/  ____            /  _____/  ____     #
  10. #  /   \  ___ /  _ \   ______ /   \  ___ /  _ \    #
  11. #  \    \_\  (  <_> ) /_____/ \    \_\  (  <_> )   #
  12. #   \______  /\____/           \______  /\____/    #
  13. #          \/                         \/           #
  14. #  ________                                        #
  15. #  \______ \ _____    ____   ____  ___________     #
  16. #   |    |  \\__  \  /    \_/ ___\/ __ \_  __ \    #
  17. #   |    `   \/ __ \|   |  \  \__\  ___/|  | \/    #
  18. #  /_______  (____  /___|  /\___  >___  >__|       #
  19. #          \/     \/     \/     \/    \/           #
  20. #==================================================#
  21. #  /-\||\/|[-[-  [,()-[,()  |)/-\|\|([-|2          #
  22. #= 2019.09.23 16:00  https://youtu.be/-lhvR_eDGEY =#
  23. alias hx r15
  24. alias hy r14
  25. alias hz r13
  26. j loop
  27.  
  28. toev: #SUB: round the coord to the frame top center
  29. floor r0 r0
  30. mod r1 r0 2
  31. xor r1 r1 1
  32. add r0 r0 r1
  33. j ra
  34.  
  35. shft: #SUB: random shift to r1
  36. rand r1
  37. mul r1 r1 1.2
  38. sub r1 r1 0.6
  39. j ra
  40.  
  41. loop:
  42. l r0 db PositionX
  43. jal toev
  44. jal shft
  45. add hx r0 r1
  46. l r0 db PositionZ
  47. jal toev
  48. jal shft
  49. add hz r0 r1
  50. l r0 db PositionY
  51. jal toev
  52. add hy r0 10000 # i believe i can fly
  53.  
  54. s db TargetX hx
  55. s db TargetY hy
  56. s db TargetZ hz
  57. s db Mode RobotMode.MoveToTarget
  58. yield
  59. j loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement