Advertisement
Cellfire

researchperc

Aug 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. #Set the topics in order that you want to research them
  2.  
  3. SETVARIABLE topic1 fundamental
  4. SETVARIABLE topic2 augmentation
  5. SETVARIABLE topic3 stream
  6. SETVARIABLE topic4 utility
  7. SETVARIABLE topic5 warding
  8. SETVARIABLE camb manac
  9. SETVARIABLE charge 25
  10. SETVARIABLE prep 50
  11. SETVARIABLE track topic.1
  12. COUNTER SET 1
  13. IF_1 goto set.count
  14. goto cast
  15. COUNTER SET %1
  16. goto cast
  17.  
  18. cast:
  19. PAUSE
  20. put prep gaf %prep
  21. PAUSE
  22. PAUSE
  23. put charge my %camb %charge
  24. WAITFOR Roundtime
  25. put invoke my %camb
  26. PAUSE 2
  27. put charge my %camb %charge
  28. WAITFOR Roundtime
  29. put invoke my %camb
  30. WAITFOR You feel fully prepared
  31. put cast
  32. goto %track
  33.  
  34. topic.1:
  35. put research %topic1 300
  36. MATCH topic.1 there is still more to learn
  37. MATCH topic.2 Breakthrough!
  38. matchwait
  39.  
  40. # topic2.set:
  41. # SETVARIABLE track topic.2
  42. # goto cast
  43.  
  44. topic.2:
  45. put research %topic2 300
  46. MATCH topic.2 there is still more to learn
  47. MATCH topic.3 Breakthrough!
  48. matchwait
  49.  
  50. # topic3.set:
  51. # SETVARIABLE track topic.3
  52. # goto cast
  53.  
  54. topic.3:
  55. put research %topic3 300
  56. MATCH topic.3 there is still more to learn
  57. MATCH topic.4 Breakthrough!
  58. matchwait
  59.  
  60. # topic4.set:
  61. # SETVARIABLE track topic.4
  62. # goto cast
  63.  
  64. topic.4:
  65. put research %topic4 300
  66. MATCH topic.4 there is still more to learn
  67. MATCH topic.5 Breakthrough!
  68. matchwait
  69.  
  70. # topic5.set:
  71. # SETVARIABLE track topic.5
  72. # goto cast
  73.  
  74. topic.5:
  75. put research %topic5 300
  76. MATCH topic.5 there is still more to learn
  77. MATCH check.count Breakthrough!
  78. matchwait
  79.  
  80. check.count:
  81. PAUSE
  82. COUNTER SUBTRACT 1
  83. IF %c = 0 THEN goto done
  84. goto topic1.set
  85.  
  86. topic1.set:
  87. SETVARIABLE track topic.1
  88. goto cast
  89.  
  90. done:
  91. echo
  92. echo All Done!!
  93. echo
  94. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement