tabnation

valhiem 2 run chop

Feb 25th, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. msgbox,F4=Run with Q, F5=Chop Wood, F6=Ready for battle settings, F7=Ready for battle, F12=Reload
  2.  
  3. ; run with auto walk Q
  4. f4::
  5. loop{
  6. send {shift down}
  7. send q
  8. sleep 10000
  9. send {shift up}
  10. sleep 10000
  11. }
  12. return
  13.  
  14. f12::
  15. Critical
  16. Reload
  17. Sleep, 10000
  18.  
  19. ;auto chop wood or rapid fire mouse
  20. f5::
  21. loop{
  22. click
  23. sleep 1000
  24. }
  25. return
  26.  
  27. ;ready for battle
  28. f6::
  29. if slot1=1
  30. {
  31. check1=checked
  32. }
  33. else
  34. {
  35. check1=
  36. }
  37. if slot2=1
  38. {
  39. check2=checked
  40. }
  41. else
  42. {
  43. check2=
  44. }
  45. if slot3=1
  46. {
  47. check3=checked
  48. }
  49. else
  50. {
  51. check3=
  52. }
  53. if slot4=1
  54. {
  55. check4=checked
  56. }
  57. else
  58. {
  59. check4=
  60. }
  61. if slot5=1
  62. {
  63. check5=checked
  64. }
  65. else
  66. {
  67. check5=
  68. }
  69. if slot6=1
  70. {
  71. check6=checked
  72. }
  73. else
  74. {
  75. check6=
  76. }
  77. if slot7=1
  78. {
  79. check7=checked
  80. }
  81. else
  82. {
  83. check7=
  84. }
  85. if slot8=1
  86. {
  87. check8=checked
  88. }
  89. else
  90. {
  91. check8=
  92. }
  93. if buffyo=1
  94. {
  95. buffc=checked
  96. }
  97. else
  98. {
  99. buffc=
  100. }
  101.  
  102. gui, destroy
  103. Gui, Add, CheckBox, x12 y9 w60 h20 vslot1 %check1%, Slot 1
  104. Gui, Add, CheckBox, x12 y39 w60 h20 vslot2 %check2%, Slot 2
  105. Gui, Add, CheckBox, x12 y69 w60 h20 vslot3 %check3%, Slot 3
  106. Gui, Add, CheckBox, x12 y99 w60 h20 vslot4 %check4%, Slot 4
  107. Gui, Add, CheckBox, x12 y129 w60 h20 vslot5 %check5%, Slot 5
  108. Gui, Add, CheckBox, x12 y159 w60 h20 vslot6 %check6%, Slot 6
  109. Gui, Add, CheckBox, x12 y189 w60 h20 vslot7 %check7%, Slot 7
  110. Gui, Add, CheckBox, x12 y219 w60 h20 vslot8 %check8%, Slot 8
  111. Gui, Add, CheckBox, x132 y129 w90 h20 vbuffyo %buffc%, Buff
  112. Gui, Add, Button, x92 y249 w40 h20 gsave, GO
  113. Gui, Add, Text, x132 y19 w100 h100 , Pick Which Slots you want to use when pressing F7. Press F6 to reopen this menu
  114. Gui, Show, x755 y380 h293 w235, Battle Ready
  115. Return
  116.  
  117. save:
  118. gui, submit
  119. return
  120.  
  121. f7::
  122. if slot1=1
  123. {
  124. send 1
  125. }
  126. if slot2=1
  127. {
  128. send 2
  129. }
  130. if slot3=1
  131. {
  132. send 3
  133. }
  134. if slot4=1
  135. {
  136. send 4
  137. }
  138. if slot5=1
  139. {
  140. send 5
  141. }
  142. if slot6=1
  143. {
  144. send 6
  145. }
  146. if slot7=1
  147. {
  148. send 7
  149. }
  150. if slot8=1
  151. {
  152. send 8
  153. }
  154. if buffyo=1
  155. {
  156. send f
  157. }
  158. return
Add Comment
Please, Sign In to add comment