Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. var dest_shard null
  2. if %1 = aesry then var dest_shard Auilusi
  3. if %1 = crossing then var dest_shard Rolagi
  4. if %1 = fang then var dest_shard Vellano
  5. if %1 = haven then var dest_shard Taniendar
  6. if %1 = hib then var dest_shard Dor'na'torna
  7. if %1 = leth then var dest_shard Asharshpar'i
  8. if %1 = merkresh then var dest_shard Besoge
  9. if %1 = muspar'i then var dest_shard Tabelrm
  10. if %1 = raven then var dest_shard Tamigen
  11. if %1 = shard then var dest_shard Marendin
  12. if %1 = taisgath then var dest_shard Erekinzil
  13. if %1 = theren then var dest_shard Dinegavren
  14. if %1 = throne then var dest_shard Mintais
  15. if %1 = tiv then var dest_shard Emalerje
  16. if %dest_shard = null then goto not_valid
  17.  
  18. open_conduit:
  19. put prepare moongate
  20. waitforre ^You raise your arms skyward
  21. put focus %2
  22. wait
  23. pause 0.5
  24. put harness 50
  25. waitforre ^You tap into the mana
  26. put cast %2
  27.  
  28. find_microcosm:
  29. action clear
  30. action var direction north when You believe the center of the microcosm is to the north\.
  31. action var direction south when You believe the center of the microcosm is to the south\.
  32. action var direction east when You believe the center of the microcosm is to the east\.
  33. action var direction west when You believe the center of the microcosm is to the west\.
  34. action var direction northeast when You believe the center of the microcosm is to the northeast\.
  35. action var direction northwest when You believe the center of the microcosm is to the northwest\.
  36. action var direction southwest when You believe the center of the microcosm is to the southwest\.
  37. action var direction southeast when You believe the center of the microcosm is to the southeast\.
  38. action var at_microcosm yes when Astral Plane, Pillar
  39. action var at_microcosm yes when Obvious exits: east, west, up, down
  40. action goto fucked when Grey Expanse
  41. gosub percieve
  42. move %direction
  43. pause 0.5
  44. if %at_microcosm != yes then goto find_microcosm
  45. else goto at_pillars
  46.  
  47. at_pillars:
  48. action clear
  49. action var in_conduit yes when You move into the chaotic tides of energy
  50. action var in_conduit yes when You reach out into the seemingly infinite strands of Lunar mana and find a conduit
  51. action goto fucked when Grey Expanse
  52. #if %dest_shard = Taniendar then move down
  53. #if %dest_shard = Tamigen then move up
  54. put focus %dest_shard
  55. wait
  56. pause 0.5
  57. if %in_conduit = yes then goto find_exit
  58. move east
  59. pause 0.5
  60. goto at_pillars
  61.  
  62. find_exit:
  63. action clear
  64. action var direction north when You believe the end of the conduit lies north\.
  65. action var direction northeast when You believe the end of the conduit lies northeast\.
  66. action var direction northwest when You believe the end of the conduit lies northwest\.
  67. action var direction east when You believe the end of the conduit lies east\.
  68. action var direction west when You believe the end of the conduit lies west\.
  69. action var direction south when You believe the end of the conduit lies south\.
  70. action var direction southwest when You believe the end of the conduit lies southwest\.
  71. action var direction southeast when You believe the end of the conduit lies southeast\.
  72. action var at_exit yes when You also see the silvery-white shard
  73. action goto fucked when Grey Expanse
  74. gosub percieve
  75. move %direction
  76. pause 0.5
  77. if %at_exit != yes then goto find_exit
  78. else goto at_exit
  79.  
  80. percieve:
  81. put perceive
  82. wait
  83. pause 0.5
  84. return
  85.  
  86. at_exit:
  87. put prepare moongate
  88. waitforre ^You raise your arms skyward
  89. put focus %dest_shard
  90. wait
  91. pause 0.5
  92. put cast %dest_shard
  93. goto done
  94.  
  95. fucked:
  96. echo ** Entered the grey expanse. Fuck! **
  97. put #beep
  98. exit
  99.  
  100. not_valid:
  101. echo ** Not a valid destination **
  102. exit
  103.  
  104. done:
  105. pause
  106. put release
  107. echo ** Travel completed successfully **
  108. put #beep
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement