Advertisement
Dasffion

Pilgrim Badge

Oct 6th, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. if $zoneid != 1 then goto endearly
  2. #crossing
  3. gosub automove shrine1-01
  4. gosub push image
  5. gosub automove shrine1-02
  6. gosub push image
  7. gosub automove shrine1-03
  8. gosub push statue
  9. gosub automove shrine1-04
  10. gosub push altar
  11. #Crossing Temple
  12. gosub automove temple|shrine1-05
  13. gosub push altar
  14. gosub automove shrine1-06
  15. gosub push altar
  16. #Tiger Clan
  17. gosub automove crossing|w gate|tiger|shrine1-07
  18. gosub push altar
  19. #NE Wilds
  20. gosub automove crossing|ne gate|shrine1-08
  21. gosub push altar
  22. #Arthe Dale
  23. gosub automove shrine1-09
  24. gosub push glythtide
  25. #Kaerna
  26. gosub automove shrine1-10
  27. gosub push altar
  28. gosub automove shrine1-11
  29. put meditate
  30. pause 90
  31. gosub push statue
  32. put meditate
  33. pause 90
  34. gosub automove mis|shrine1-12
  35. gosub push altar with badge
  36. #Therengia
  37. gosub automove .travel riverhaven|shrine2-01
  38. gosub push altar
  39. gosub automove shrine2-02
  40. gosub push statue
  41. gosub automove e gate|shrine2-03
  42. gosub push sliver
  43. gosub automove 100|shrine2-04
  44. gosub push tongue
  45. #Fortress might need to bypass
  46. #gosub automove cleric|shrine2-05
  47. #gosub push altar
  48. gosub automove .travel rossmans
  49. gosub automove shrine2-06
  50. gosub push altar
  51. gosub automove .travel lang|shrine2-07
  52. gosub push altar
  53. gosub automove shrine2-08
  54. gosub push statue
  55. gosub automove marauders|shrine2-09
  56. gosub push altar
  57. gosub automove theren|shrine2-10
  58. gosub push altar
  59. gosub automove shrine2-11
  60. gosub push altar
  61. gosub automove .travel musp|shrine2-12
  62. gosub push altar
  63. gosub automove shrine2-13
  64. gosub push construct
  65. gosub automove .travel leth|crossing|shrine1-13
  66. gosub push column
  67. gosub automove leth|shrine1-14
  68. gosub push altar
  69. gosub automove shard|shrine3-1
  70. gosub push altar
  71. gosub automove .travel fayrin|shrine3-2
  72. gosub push altar
  73. gosub automove shrine3-3
  74. gosub push altar
  75. gosub automove shrine3-4
  76. gosub push altar
  77. gosub automove w gate|shrine3-5
  78. gosub push altar
  79. exit
  80.  
  81.  
  82. push:
  83. var object $1
  84. push %object with badge
  85. return
  86.  
  87. endearly:
  88. echo Need to start in Crossing
  89. exit
  90.  
  91. automove:
  92. var movement $0
  93. eval mcount count("%movement", "|")
  94. var ccount 0
  95. #if contains("Cleric|Warrior Mage|Moon Mage|Bard|Empath|Paladin", "$Guild") then put #var powerwalk 1
  96.  
  97. automove_1:
  98. pause 1
  99. if matchre("%movement(%ccount)", "travel") then goto travelmove
  100. match automove_1 YOU HAVE FAILED
  101. match automove_1 You can't go there
  102. match automove_1 MOVE FAILED
  103. match autoreturn YOU HAVE ARRIVED
  104. else put #goto %movement(%ccount)
  105. matchwait
  106.  
  107. travelmove:
  108. put %movement(%ccount)
  109. waitfor REACHED YOUR DESTINATION
  110. goto autoreturn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement