Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. if_1 goto discern
  2. echo What would you like to research? (use RESEARCH LIST to see your options)
  3. echo Usage: .research utility fundamental fundamental augmentation warding
  4. goto quit
  5.  
  6. discern-pause:
  7. pause
  8. discern:
  9. match discern-pause ...wait
  10. matchre castat100 /for a total of 1\d\d streams\./
  11. matchre castat90 /for a total of 9\d streams\./
  12. matchre castat80 /for a total of 8\d streams\./
  13. matchre castat70 /for a total of 7\d streams\./
  14. matchre castat60 /for a total of 6\d streams\./
  15. matchre castat50 /for a total of 5\d streams\./
  16. matchre castat40 /for a total of 4\d streams\./
  17. matchre castat30 /for a total of 3\d streams\./
  18. matchre castat20 /for a total of 2\d streams\./
  19. matchre castat10 /for a total of 1\d streams\./
  20. matchre castatmin /for a total of \d streams\./
  21. matchre castatmin /You don't think you are able to cast this spell
  22. put discern gaf
  23. matchwait 15
  24. goto discern-pause
  25.  
  26. castat100:
  27. setvariable prep-mana 90
  28. goto research
  29.  
  30. castat90:
  31. setvariable prep-mana 80
  32. goto research
  33.  
  34. castat80:
  35. setvariable prep-mana 70
  36. goto research
  37.  
  38. castat70:
  39. setvariable prep-mana 60
  40. goto research
  41.  
  42. castat60:
  43. setvariable prep-mana 50
  44. goto research
  45.  
  46. castat50:
  47. setvariable prep-mana 40
  48. goto research
  49.  
  50. castat40:
  51. setvariable prep-mana 30
  52. goto research
  53.  
  54. castat30:
  55. setvariable prep-mana 25
  56. goto research
  57.  
  58. castat20:
  59. setvariable prep-mana 20
  60. goto research
  61.  
  62. castat10:
  63. setvariable prep-mana 10
  64. goto research
  65.  
  66. castatmin:
  67. setvariable prep-mana 1
  68. goto research
  69.  
  70. research-pause:
  71. pause
  72. research:
  73. match research However, there is still more to learn
  74. match gaf You require some special means
  75. match gaf Your eyes briefly darken.
  76. match nextmagic Breakthrough!
  77. match research-pause ...wait
  78. match error Usage: RESEARCH
  79. put research %1 300
  80. matchwait 305
  81. goto research
  82.  
  83. nextmagic:
  84. shift
  85. if_1 goto research
  86. goto quit
  87.  
  88. gaf-pause:
  89. pause
  90. gaf:
  91. # cast gauge flow
  92. match gaf-pause Roundtime
  93. match gaf-pause ...wait
  94. match cast You feel fully prepared to cast your spell.
  95. match cast fully prepared the Gauge Flow spell
  96. put prep gaf %prep-mana
  97. matchwait 30
  98. goto gaf-pause
  99.  
  100. cast:
  101. pause
  102. put cast
  103. goto research
  104.  
  105. error:
  106. echo %1 is not a valid research option.
  107.  
  108. quit:
  109. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement