Advertisement
Guest User

Roblox Bee Swarm AFK AHK field farm bot scripts

a guest
Oct 3rd, 2018
2,851
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.51 KB | None | 0 0
  1. Links for the scripts themselves.
  2. https://cdn.discordapp.com/attachments/428539373521338369/497209995020992512/Sunflower_Field.ahk
  3.  
  4. https://cdn.discordapp.com/attachments/428539373521338369/497209928478621706/Dandelion_Field.ahk
  5.  
  6. https://cdn.discordapp.com/attachments/428539373521338369/497209932500828180/Mushroom_Field.ahk
  7.  
  8. https://cdn.discordapp.com/attachments/428539373521338369/497209917833478155/Blue_flower_field.ahk
  9.  
  10. https://cdn.discordapp.com/attachments/428539373521338369/497209924300963843/Clover_field.ahk
  11.  
  12. https://cdn.discordapp.com/attachments/428539373521338369/497210089514729482/Spider_field.ahk
  13.  
  14. https://cdn.discordapp.com/attachments/428539373521338369/497209990017318934/Strawberry_field.ahk
  15.  
  16. https://cdn.discordapp.com/attachments/428539373521338369/497209913492373505/Bamboo_field.ahk
  17.  
  18. https://cdn.discordapp.com/attachments/428539373521338369/497209940243644467/Pineapple_patch.ahk
  19.  
  20. https://cdn.discordapp.com/attachments/428539373521338369/497209920723222553/Cactus_field.ahk
  21.  
  22. https://cdn.discordapp.com/attachments/428539373521338369/497209943783636992/Pumpkin_patch.ahk
  23.  
  24. https://cdn.discordapp.com/attachments/428539373521338369/497209936355262494/Pine_tree_forest.ahk
  25.  
  26. https://cdn.discordapp.com/attachments/428539373521338369/497209947373699072/Rose_field.ahk
  27.  
  28. https://cdn.discordapp.com/attachments/428539373521338369/497209997546225665/Werewolf_realm_advanced_updated.ahk
  29.  
  30. And now for the code.
  31. Sunflower Field –
  32. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  33. ; #Warn ; Enable warnings to assist with detecting common errors.
  34. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  35. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  36.  
  37. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  38.  
  39. setup := 2500 // speedMultiplier
  40.  
  41. start := 7220 // speedMultiplier ; T-H-I-S is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 11840, 9530, 7220, 4910, 2600
  42.  
  43. entrance := 4200 // speedMultiplier
  44.  
  45. horizontal := 1750 // speedMultiplier
  46.  
  47. vertical := 2500 // speedMultiplier
  48.  
  49. pollinationTime := 7000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  50.  
  51. pollinationCycles := 3 ; This is how many times you will circle the field until you reset.
  52.  
  53. f8::
  54. {
  55.  
  56. ; setup start
  57.  
  58. Send, {s down}
  59. Sleep, %setup%
  60. Send, {s up}
  61.  
  62. Send, {d down}
  63. Sleep, %start%
  64. Send, {d up}
  65.  
  66. Send, {s down}
  67. Sleep, %entrance%
  68. Send, {s up}
  69.  
  70. Sleep, %pollinationTime%
  71.  
  72. ; setup end
  73.  
  74. ; pollination start
  75.  
  76. Loop, %pollinationCycles%
  77. {
  78. Send, {s down}
  79. Sleep, %vertical%
  80. Send, {s up}
  81.  
  82. Sleep, %pollinationTime%
  83.  
  84. Send, {s down}
  85. Sleep, %vertical%
  86. Send, {s up}
  87.  
  88. Sleep, %pollinationTime% ; finished column one
  89.  
  90. Send, {a down}
  91. Sleep, %horizontal%
  92. Send, {a up}
  93.  
  94. Sleep, %pollinationTime% ; switch to column two
  95.  
  96. Send, {w down}
  97. Sleep, %vertical%
  98. Send, {w up}
  99.  
  100. Sleep, %pollinationTime%
  101.  
  102. Send, {w down}
  103. Sleep, %vertical%
  104. Send, {w up}
  105.  
  106. Sleep, %pollinationTime%
  107.  
  108. Send, {d down}
  109. Sleep, %horizontal%
  110. Send, {d up}
  111.  
  112. Sleep, %pollinationTime% ; resetting loop path
  113. }
  114.  
  115. ; pollination end
  116.  
  117. ; Reset mechanic
  118.  
  119. Send, {esc}
  120. Sleep, 500
  121.  
  122. Send, {r}
  123. Sleep, 500
  124.  
  125. Send, {Enter}
  126. Sleep, 30000
  127.  
  128. }
  129. return
  130. Dandelion Field –
  131. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  132. ; #Warn ; Enable warnings to assist with detecting common errors.
  133. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  134. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  135.  
  136. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  137.  
  138. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  139.  
  140. entrance := 5850 // speedMultiplier
  141.  
  142. sideways := 2500 // speedMultiplier
  143.  
  144. vertical := 2200 // speedMultiplier
  145.  
  146. pollinationTime := 7000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  147.  
  148. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  149.  
  150. f8::
  151. {
  152.  
  153. ; setup start
  154.  
  155. Send, {a down}
  156. Sleep, %start%
  157. Send, {a up}
  158.  
  159. Send, {s down}
  160. Sleep, %entrance%
  161. Send, {s up}
  162.  
  163. Sleep, %pollinationTime%
  164.  
  165. ; setup end
  166.  
  167. ; pollination start
  168.  
  169. Loop, %pollinationCycles%
  170. {
  171. Send, {d down}
  172. Sleep, %sideways%
  173. Send, {d up}
  174.  
  175. Sleep, %pollinationTime%
  176.  
  177. Send, {d down}
  178. Sleep, %sideways%
  179. Send, {d up}
  180.  
  181. Sleep, %pollinationTime%
  182.  
  183. Send, {s down}
  184. Sleep, %vertical%
  185. Send, {s up}
  186.  
  187. Sleep, %pollinationTime%
  188.  
  189. Send, {a down}
  190. Sleep, %sideways%
  191. Send, {a up}
  192.  
  193. Sleep, %pollinationTime%
  194.  
  195. Send, {a down}
  196. Sleep, %sideways%
  197. Send, {a up}
  198.  
  199. Sleep, %pollinationTime%
  200.  
  201. Send, {w down}
  202. Sleep, %vertical%
  203. Send, {w up}
  204.  
  205. Sleep %pollinationTime%
  206. }
  207.  
  208. ; pollination end
  209.  
  210. ; Reset mechanic
  211.  
  212. Send {esc}
  213. Sleep 500
  214.  
  215. Send {r}
  216. Sleep 500
  217.  
  218. Send {Enter}
  219. Sleep 30000
  220.  
  221. }
  222. return
  223. Mushroom Field –
  224. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  225. ; #Warn ; Enable warnings to assist with detecting common errors.
  226. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  227. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  228.  
  229. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  230.  
  231. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  232.  
  233. beginning := 10000 // speedMultiplier
  234.  
  235. journey := 5000 // speedMultiplier
  236.  
  237. corner := 2500 // speedMultiplier
  238.  
  239. farmTime := 3000 // speedMultiplier
  240.  
  241. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  242.  
  243. battleTime := 2000
  244.  
  245. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  246.  
  247. f8::
  248. {
  249.  
  250. ; startup
  251.  
  252. Send, {a down}
  253. Sleep, %start%
  254. Send, {a up}
  255.  
  256. Send, {s down}
  257. Sleep, %beginning%
  258. Send, {s up}
  259.  
  260. Send, {d down}
  261. Sleep, %journey%
  262. Send, {d up}
  263.  
  264. Send, {s down}
  265. Sleep, %corner%
  266. Send, {s up}
  267.  
  268. Sleep, %battleTime%
  269.  
  270. Send, {Space down}
  271. Sleep, %battleTime%
  272. Send, {Space up}
  273.  
  274. ; startup End
  275.  
  276. ; pollination start
  277.  
  278. Loop, %pollinationCycles%
  279. {
  280. Send, {d down}
  281. Sleep, %farmTime%
  282. Send, {d up}
  283.  
  284. Sleep %pollinationTime%
  285.  
  286. Send, {s down}
  287. Sleep, %farmTime%
  288. Send, {s up}
  289.  
  290. Sleep, %pollinationTime%
  291.  
  292. Send, {a down}
  293. Sleep, %farmTime%
  294. Send, {a up}
  295.  
  296. Sleep, %pollinationTime%
  297.  
  298. Send, {w down}
  299. Sleep, %farmTime%
  300. Send, {w up}
  301.  
  302. Sleep, %pollinationTime%
  303. }
  304.  
  305. ; pollination end
  306.  
  307. ; Reset mechanic
  308.  
  309. Send {esc}
  310. Sleep 500
  311.  
  312. Send {r}
  313. Sleep 500
  314.  
  315. Send {Enter}
  316. Sleep 20000
  317.  
  318. }
  319. return
  320. Blue Flower Field –
  321. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  322. ; #Warn ; Enable warnings to assist with detecting common errors.
  323. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  324. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  325.  
  326. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  327.  
  328. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  329.  
  330. beginning := 13500 // speedMultiplier
  331.  
  332. entrance := 5000 // speedMultiplier
  333.  
  334. farmTime := 2500 // speedMultiplier
  335.  
  336. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  337.  
  338. battleTime := 2000
  339.  
  340. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  341.  
  342. f8::
  343. {
  344.  
  345. ; setup start
  346.  
  347. Send, {a down}
  348. Sleep, %start%
  349. Send, {a up}
  350.  
  351. Send, {s down}
  352. Sleep, %beginning%
  353. Send, {s up}
  354.  
  355. Send, {a down}
  356. Sleep, %entrance%
  357. Send, {a up}
  358.  
  359. Sleep, %battleTime%
  360.  
  361. Send, {Space down}
  362. Sleep, %battleTime%
  363. Send, {Space up}
  364.  
  365. ; setup end
  366.  
  367. ; pollination start
  368.  
  369. Loop, %pollinationCycles%
  370. {
  371. Send, {a down}
  372. Sleep, %farmTime%
  373. Send, {a up}
  374.  
  375. Sleep, %pollinationTime%
  376.  
  377. Send, {a down}
  378. Sleep, %farmTime%
  379. Send, {a up}
  380.  
  381. Sleep, %pollinationTime%
  382.  
  383. Send, {a down}
  384. Sleep, %farmTime%
  385. Send, {a up}
  386.  
  387. Sleep, %pollinationTime%
  388.  
  389. Send, {s down}
  390. Sleep, %farmTime%
  391. Send, {s up}
  392.  
  393. Sleep, %pollinationTime%
  394.  
  395. Send, {d down}
  396. Sleep, %farmTime%
  397. Send, {d up}
  398.  
  399. Sleep, %pollinationTime%
  400.  
  401. Send, {d down}
  402. Sleep, %farmTime%
  403. Send, {d up}
  404.  
  405. Sleep, %pollinationTime%
  406.  
  407. Send, {d down}
  408. Sleep, %farmTime%
  409. Send, {d up}
  410.  
  411. Sleep, %pollinationTime%
  412.  
  413. Send, {w down}
  414. Sleep, %farmTime%
  415. Send, {w up}
  416.  
  417. Sleep, %pollinationTime%
  418. }
  419.  
  420. ; pollination end
  421.  
  422. ; reset mechanic
  423.  
  424. Send, {esc}
  425. Sleep, 500
  426.  
  427. Send, {r}
  428. Sleep, 500
  429.  
  430. Send, {Enter}
  431. Sleep, 20000
  432. }
  433. return
  434. Clover Field –
  435. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  436. ; #Warn ; Enable warnings to assist with detecting common errors.
  437. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  438. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  439.  
  440. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  441.  
  442. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  443.  
  444. beginning := 7000 // speedMultiplier
  445.  
  446. entranceStart := 6500 // speedMultiplier
  447.  
  448. entranceTurn := 2500 // speedMultiplier
  449.  
  450. entranceEnd := 4000 // speedMultiplier
  451.  
  452. farmTime := 2500 // speedMultiplier
  453.  
  454. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  455.  
  456. battleTime := 2000
  457.  
  458. pollinationCycles := 4 ; This is how many times you will circle the field until you reset.
  459.  
  460. f8::
  461. {
  462.  
  463. ; setup start
  464.  
  465. Send, {a down}
  466. Sleep, %start%
  467. Send, {a up}
  468.  
  469. Send, {s down}
  470. Sleep, %beginning%
  471. Send, {s up}
  472.  
  473. Send, {a down}
  474. Sleep, %entranceStart%
  475. Send, {a up}
  476.  
  477. Send, {s down}
  478. Sleep, %entranceTurn%
  479. Send, {s up}
  480.  
  481. Send, {a down}
  482. Sleep, %entranceEnd%
  483. Send, {a up}
  484.  
  485. Sleep, %battleTime%
  486.  
  487. Send, {Space down}
  488. Sleep, %battleTime%
  489. Send, {Space up}
  490.  
  491. ; setup end
  492.  
  493. ; pollination start
  494.  
  495. Loop, %pollinationCycles%
  496. {
  497. Send, {w down}
  498. Sleep, %farmTime%
  499. Send, {w up}
  500.  
  501. Sleep, %pollinationTime%
  502.  
  503. Send, {a down}
  504. Sleep, %farmTime%
  505. Send, {a up}
  506.  
  507. Sleep, %pollinationTime%
  508.  
  509. Send, {s down}
  510. Sleep, %farmTime%
  511. Send, {s up}
  512.  
  513. Sleep, %pollinationTime%
  514.  
  515. Send, {d down}
  516. Sleep, %farmTime%
  517. Send, {d up}
  518.  
  519. Sleep, %pollinationTime%
  520. }
  521.  
  522. ; pollination end
  523.  
  524. ; reset mechanic
  525.  
  526. Send, {esc}
  527. Sleep, 500
  528.  
  529. Send, {r}
  530. Sleep, 500
  531.  
  532. Send, {Enter}
  533. Sleep, 20000
  534. }
  535. return
  536. Spider Field –
  537. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  538. ; #Warn ; Enable warnings to assist with detecting common errors.
  539. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  540. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  541.  
  542. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  543.  
  544. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  545.  
  546. beginning := 21000 // speedMultiplier
  547.  
  548. positioning := 1000 // speedMultiplier
  549.  
  550. farmTime := 2500 // speedMultiplier
  551.  
  552. pollinationTime := 5000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  553.  
  554. battleTime := 3000
  555.  
  556. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  557.  
  558. f8::
  559. {
  560.  
  561. ; setup start
  562.  
  563. Send, {a down}
  564. Sleep, %start%
  565. Send, {a up}
  566.  
  567. Send, {s down}
  568. Sleep, %beginning%
  569. Send, {s up}
  570.  
  571. Send, {d down}
  572. Sleep, %positioning%
  573. Send, {d up}
  574.  
  575. Sleep, %battleTime%
  576.  
  577. Send, {Space up}
  578. Sleep, %battleTime%
  579. Send, {Space up}
  580.  
  581. ; setup end
  582.  
  583. ; pollination start
  584.  
  585. Loop, %pollinationCycles%
  586. {
  587. Send, {d down}
  588. Sleep, %farmTime%
  589. Send, {d up}
  590.  
  591. Sleep, %pollinationTime%
  592.  
  593. Send, {s down}
  594. Sleep, %farmTime%
  595. Send, {s up}
  596.  
  597. Sleep, %pollinationTime%
  598.  
  599. Send, {a down}
  600. Sleep, %farmTime%
  601. Send, {a up}
  602.  
  603. Sleep, %pollinationTime%
  604.  
  605. Send, {w down}
  606. Sleep, %farmTime%
  607. Send, {w up}
  608.  
  609. Sleep, %pollinationTime%
  610. }
  611.  
  612. ; pollination end
  613.  
  614. ; reset mechanic
  615.  
  616. Send, {esc}
  617. Sleep, 500
  618.  
  619. Send, {r}
  620. Sleep, 500
  621.  
  622. Send, {Enter}
  623. Sleep, 20000
  624. }
  625. return
  626. Strawberry Field –
  627. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  628. ; #Warn ; Enable warnings to assist with detecting common errors.
  629. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  630. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  631.  
  632. speedmultiplier := 1.0 ; Allows the script to fit the path to your speed.
  633.  
  634. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  635.  
  636. beginning := 20000 // speedmultiplier
  637.  
  638. entrance := 9750 // speedmultiplier
  639.  
  640. farmTime := 2500 // speedmultiplier
  641.  
  642. spiderTime := 3000
  643.  
  644. battleTime := 2000
  645.  
  646. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  647.  
  648. pollinationCycles := 3 ; This is how many times you will circle the field until you reset.
  649.  
  650. f8::
  651. {
  652.  
  653. ; setup start
  654.  
  655. Send, {a down}
  656. Sleep, %start%
  657. Send, {a up}
  658.  
  659. Send, {s down}
  660. Sleep, %beginning%
  661. Send, {s up}
  662.  
  663. Sleep, %spiderTime%
  664.  
  665. Send, {Space down}
  666. Sleep, %spiderTime%
  667. Send, {Space up}
  668.  
  669. Send, {d down}
  670. Sleep, %entrance%
  671. Send, {d up}
  672.  
  673. Sleep, %battleTime%
  674.  
  675. Send, {Space down}
  676. Sleep, %battleTime%
  677. Send, {Space up}
  678.  
  679. Sleep, %pollinationTime%
  680.  
  681. ; setup end
  682.  
  683. ; pollination start
  684.  
  685. Loop, %pollinationCycles%
  686. {
  687. Send, {d down}
  688. Sleep, %farmTime%
  689. Send, {d up}
  690.  
  691. Sleep, %pollinationTime%
  692.  
  693. Send, {s down}
  694. Sleep, %farmTime%
  695. Send, {s up}
  696.  
  697. Sleep, %pollinationTime%
  698.  
  699. Send, {a down}
  700. Sleep, %farmTime%
  701. Send, {a up}
  702.  
  703. Sleep, %pollinationTime%
  704.  
  705. Send, {w down}
  706. Sleep, %farmTime%
  707. Send, {w up}
  708.  
  709. Sleep, %pollinationTime%
  710. }
  711.  
  712. ; pollination end
  713.  
  714. ; Reset mechanic
  715.  
  716. Send, {esc}
  717. Sleep, 500
  718.  
  719. Send, {r}
  720. Sleep, 500
  721.  
  722. Send, {Enter}
  723. Sleep, 30000
  724.  
  725. }
  726. return
  727. Bamboo Field –
  728. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  729. ; #Warn ; Enable warnings to assist with detecting common errors.
  730. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  731. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  732.  
  733. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  734.  
  735. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  736.  
  737. beginning := 21250 // speedMultiplier
  738.  
  739. entrance := 5000 // speedMultiplier
  740.  
  741. farmTime := 2500 // speedMultiplier
  742.  
  743. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  744.  
  745. battleTime := 2000
  746.  
  747. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  748.  
  749. f8::
  750. {
  751.  
  752. ; setup start
  753.  
  754. Send, {a down}
  755. Sleep, %start%
  756. Send, {a up}
  757.  
  758. Send, {s down}
  759. Sleep, %beginning%
  760. Send, {s up}
  761.  
  762. Send, {a down}
  763. Sleep, %entrance%
  764. Send, {a up}
  765.  
  766. Sleep, %battleTime%
  767.  
  768. Send, {Space down}
  769. Sleep, %battleTime%
  770. Send, {Space up}
  771.  
  772. ; setup end
  773.  
  774. ; pollination start
  775.  
  776. Loop, %pollinationCycles%
  777. {
  778. Send, {a down}
  779. Sleep, %farmTime%
  780. Send, {a up}
  781.  
  782. Sleep, %pollinationTime%
  783.  
  784. Send, {a down}
  785. Sleep, %farmTime%
  786. Send, {a up}
  787.  
  788. Sleep, %pollinationTime%
  789.  
  790. Send, {a down}
  791. Sleep, %farmTime%
  792. Send, {a up}
  793.  
  794. Sleep, %pollinationTime%
  795.  
  796. Send, {s down}
  797. Sleep, %farmTime%
  798. Send, {s up}
  799.  
  800. Sleep, %pollinationTime%
  801.  
  802. Send, {d down}
  803. Sleep, %farmTime%
  804. Send, {d up}
  805.  
  806. Sleep, %pollinationTime%
  807.  
  808. Send, {d down}
  809. Sleep, %farmTime%
  810. Send, {d up}
  811.  
  812. Sleep, %pollinationTime%
  813.  
  814. Send, {d down}
  815. Sleep, %farmTime%
  816. Send, {d up}
  817.  
  818. Sleep, %pollinationTime%
  819.  
  820. Send, {w down}
  821. Sleep, %farmTime%
  822. Send, {w up}
  823.  
  824. Sleep, %pollinationTime%
  825. }
  826.  
  827. ; pollination end
  828.  
  829. ; reset mechanic
  830.  
  831. Send, {esc}
  832. Sleep, 500
  833.  
  834. Send, {r}
  835. Sleep, 500
  836.  
  837. Send, {Enter}
  838. Sleep, 20000
  839. }
  840. return
  841. Pineapple Patch –
  842. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  843. ; #Warn ; Enable warnings to assist with detecting common errors.
  844. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  845. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  846.  
  847. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  848.  
  849. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  850.  
  851. journey := 22500 // speedMultiplier
  852.  
  853. blueField := 13000 // speedMultiplier
  854.  
  855. incline := 5250 // speedMultiplier
  856.  
  857. corner := 1500 // speedMultiplier
  858.  
  859. entrance := 11250 // speedMultiplier
  860.  
  861. detour := 2500 // speedMultiplier
  862.  
  863. step := 4250 // speedMultiplier
  864.  
  865. sideways := 3000 // speedMultiplier
  866.  
  867. vertical := 2500 // speedMultiplier
  868.  
  869. pollinationTime := 8000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  870.  
  871. battleTime := 2000
  872.  
  873. spiderTime := 3000
  874.  
  875. pollinationCycles := 8 ; This is how many times you will circle the field until you reset.
  876.  
  877. f8::
  878. {
  879. ; setup start
  880.  
  881. Send, {a down}
  882. Sleep, %start%
  883. Send, {a up}
  884.  
  885. Send, {s down}
  886. Sleep, %journey%
  887. Send, {s up}
  888.  
  889. Sleep, %spiderTime%
  890.  
  891. Send, {Space down}
  892. Sleep, %spiderTime%
  893. Send, {Space up}
  894.  
  895. Send, {a down}
  896. Sleep, %blueField%
  897. Send, {a up}
  898.  
  899. Send, {w down}
  900. Sleep, %incline%
  901. Send, {w up}
  902.  
  903. Send, {a down}
  904. Sleep, %corner%
  905. Send, {a up}
  906.  
  907. Send, {s down}
  908. Sleep, %entrance%
  909. Send, {s up}
  910.  
  911. Send, {d down}
  912. Sleep, %detour%
  913. Send, {d up}
  914.  
  915. Loop, 4
  916. {
  917. Send, {e down}
  918. Sleep, 100
  919. Send, {e up}
  920. Sleep, 100
  921. }
  922.  
  923. Send, {a down}
  924. Sleep, %detour%
  925. Send, {a up}
  926.  
  927. Send, {s down}
  928. Sleep, %step%
  929. Send, {s up}
  930.  
  931. Sleep, %battleTime%
  932.  
  933. Send, {Space down}
  934. Sleep, %battleTime%
  935. Send, {Space up}
  936.  
  937. Sleep, %pollinationTime%
  938.  
  939. ; setup end
  940.  
  941. ; pollination start
  942.  
  943. Loop, %pollinationCycles%
  944. {
  945. Send, {s down}
  946. Sleep, %vertical%
  947. Send, {s up}
  948.  
  949. Sleep, %pollinationTime%
  950.  
  951. Send, {a down}
  952. Sleep, %sideways%
  953. Send, {a up}
  954.  
  955. Sleep, %pollinationTime%
  956.  
  957. Send, {w down}
  958. Sleep, %vertical%
  959. Send, {w up}
  960.  
  961. Sleep, %pollinationTime%
  962.  
  963. Send, {d down}
  964. Sleep, %sideways%
  965. Send, {d up}
  966.  
  967. Sleep, %pollinationTime%
  968. }
  969.  
  970. ; pollination end
  971.  
  972. ; Reset mechanic
  973.  
  974. Send, {esc}
  975. Sleep, 500
  976.  
  977. Send, {r}
  978. Sleep, 500
  979.  
  980. Send, {Enter}
  981. Sleep, 60000
  982.  
  983. }
  984. return
  985. Cactus Field –
  986. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  987. ; #Warn ; Enable warnings to assist with detecting common errors.
  988. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  989. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  990.  
  991. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  992.  
  993. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  994.  
  995. beginning := 20000 // speedMultiplier
  996.  
  997. spiderField := 7350 // speedMultiplier
  998.  
  999. spiderCorner := 2625 // speedMultiplier
  1000.  
  1001. rampStart := 7350 // speedMultiplier
  1002.  
  1003. rampEnd := 10200 // speedMultiplier
  1004.  
  1005. corner := 2625 // speedMultiplier
  1006.  
  1007. safetyStart := 500 // speedMultiplier
  1008.  
  1009. safetyEnd := 1500 // speedMultiplier
  1010.  
  1011. entrance := 3000 // speedMultiplier
  1012.  
  1013. farmTime := 2250 // speedMultiplier
  1014.  
  1015. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  1016.  
  1017. safetyTime := 5000
  1018.  
  1019. spiderTime := 3000
  1020.  
  1021. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  1022.  
  1023. f8::
  1024. {
  1025.  
  1026. ; setup start
  1027.  
  1028. Send, {a down}
  1029. Sleep, %start%
  1030. Send, {a up}
  1031.  
  1032. Send, {s down}
  1033. Sleep, %beginning%
  1034. Send, {s up}
  1035.  
  1036. Sleep, %spiderTime%
  1037.  
  1038. Send, {Space down}
  1039. Sleep, %spiderTime%
  1040. Send, {Space up}
  1041.  
  1042. Send, {d down}
  1043. Sleep, %spiderField%
  1044. Send, {d up}
  1045.  
  1046. Send, {w down}
  1047. Sleep, %spiderCorner%
  1048. Send, {w up}
  1049.  
  1050. Send, {d down}
  1051. Sleep, %rampStart%
  1052. Send, {d up}
  1053.  
  1054. Send, {s down}
  1055. Sleep, %rampEnd%
  1056. Send, {s up}
  1057.  
  1058. Send, {d down}
  1059. Sleep, %corner%
  1060. Send, {d up}
  1061.  
  1062. Send, {s down}
  1063. Sleep, %safetyStart%
  1064. Send, {s up}
  1065.  
  1066. Sleep, %safetyTime%
  1067.  
  1068. Send, {w down}
  1069. Sleep, %safetyEnd%
  1070. Send, {w up}
  1071.  
  1072. Send, {a down}
  1073. Sleep, %entrance%
  1074. Send, {a up}
  1075.  
  1076. Sleep, %pollinationTime%
  1077.  
  1078. ; setup end
  1079.  
  1080. ; pollination start
  1081.  
  1082. Loop, %pollinationCycles%
  1083. {
  1084. Send, {a down}
  1085. Sleep, %farmTime%
  1086. Send, {a up}
  1087.  
  1088. Sleep, %pollinationTime%
  1089.  
  1090. Send, {a down}
  1091. Sleep, %farmTime%
  1092. Send, {a up}
  1093.  
  1094. Sleep, %pollinationTime%
  1095.  
  1096. Send, {s down}
  1097. Sleep, %farmTime%
  1098. Send, {s up}
  1099.  
  1100. Sleep, %pollinationTime%
  1101.  
  1102. Send, {d down}
  1103. Sleep, %farmTime%
  1104. Send, {d up}
  1105.  
  1106. Sleep, %pollinationTime%
  1107.  
  1108. Send, {d down}
  1109. Sleep, %farmTime%
  1110. Send, {d up}
  1111.  
  1112. Sleep, %pollinationTime%
  1113.  
  1114. Send, {w down}
  1115. Sleep, %farmTime%
  1116. Send, {w up}
  1117.  
  1118. Sleep, %pollinationTime%
  1119. }
  1120.  
  1121. ; pollination end
  1122.  
  1123. ; reset mechanic
  1124.  
  1125. Send, {esc}
  1126. Sleep, 500
  1127.  
  1128. Send, {r}
  1129. Sleep, 500
  1130.  
  1131. Send, {Enter}
  1132. Sleep, 20000
  1133. }
  1134. return
  1135. Pumpkin Patch –
  1136. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  1137. ; #Warn ; Enable warnings to assist with detecting common errors.
  1138. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  1139. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  1140.  
  1141. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  1142.  
  1143. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  1144.  
  1145. beginning := 20000 // speedMultiplier
  1146.  
  1147. spiderField := 7350 // speedMultiplier
  1148.  
  1149. spiderCorner := 2625 // speedMultiplier
  1150.  
  1151. rampStart := 7350 // speedMultiplier
  1152.  
  1153. rampEnd := 10200 // speedMultiplier
  1154.  
  1155. corner := 2625 // speedMultiplier
  1156.  
  1157. safetyStart := 500 // speedMultiplier
  1158.  
  1159. safetyEnd := 3600 // speedMultiplier
  1160.  
  1161. entrance := 3000 // speedMultiplier
  1162.  
  1163. farmTime := 2250 // speedMultiplier
  1164.  
  1165. pollinationTime := 8000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  1166.  
  1167. safetyTime := 5000
  1168.  
  1169. spiderTime := 3000
  1170.  
  1171. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  1172.  
  1173. f8::
  1174. {
  1175.  
  1176. ; setup start
  1177.  
  1178. Send, {a down}
  1179. Sleep, %start%
  1180. Send, {a up}
  1181.  
  1182. Send, {s down}
  1183. Sleep, %beginning%
  1184. Send, {s up}
  1185.  
  1186. Sleep, %spiderTime%
  1187.  
  1188. Send, {Space down}
  1189. Sleep, %spiderTime%
  1190. Send, {Space up}
  1191.  
  1192. Send, {d down}
  1193. Sleep, %spiderField%
  1194. Send, {d up}
  1195.  
  1196. Send, {w down}
  1197. Sleep, %spiderCorner%
  1198. Send, {w up}
  1199.  
  1200. Send, {d down}
  1201. Sleep, %rampStart%
  1202. Send, {d up}
  1203.  
  1204. Send, {s down}
  1205. Sleep, %rampEnd%
  1206. Send, {s up}
  1207.  
  1208. Send, {d down}
  1209. Sleep, %corner%
  1210. Send, {d up}
  1211.  
  1212. Send, {s down}
  1213. Sleep, %safetyStart%
  1214. Send, {s up}
  1215.  
  1216. Sleep, %safetyTime%
  1217.  
  1218. Send, {s down}
  1219. Sleep, %safetyEnd%
  1220. Send, {s up}
  1221.  
  1222. Send, {a down}
  1223. Sleep, %entrance%
  1224. Send, {a up}
  1225.  
  1226. Sleep, %pollinationTime%
  1227.  
  1228. ; setup end
  1229.  
  1230. ; pollination start
  1231.  
  1232. Loop, %pollinationCycles%
  1233. {
  1234. Send, {a down}
  1235. Sleep, %farmTime%
  1236. Send, {a up}
  1237.  
  1238. Sleep, %pollinationTime%
  1239.  
  1240. Send, {a down}
  1241. Sleep, %farmTime%
  1242. Send, {a up}
  1243.  
  1244. Sleep, %pollinationTime%
  1245.  
  1246. Send, {s down}
  1247. Sleep, %farmTime%
  1248. Send, {s up}
  1249.  
  1250. Sleep, %pollinationTime%
  1251.  
  1252. Send, {d down}
  1253. Sleep, %farmTime%
  1254. Send, {d up}
  1255.  
  1256. Sleep, %pollinationTime%
  1257.  
  1258. Send, {d down}
  1259. Sleep, %farmTime%
  1260. Send, {d up}
  1261.  
  1262. Sleep, %pollinationTime%
  1263.  
  1264. Send, {w down}
  1265. Sleep, %farmTime%
  1266. Send, {w up}
  1267.  
  1268. Sleep, %pollinationTime%
  1269. }
  1270.  
  1271. ; pollination end
  1272.  
  1273. ; reset mechanic
  1274.  
  1275. Send, {esc}
  1276. Sleep, 500
  1277.  
  1278. Send, {r}
  1279. Sleep, 500
  1280.  
  1281. Send, {Enter}
  1282. Sleep, 20000
  1283. }
  1284. return
  1285. Pine Tree Forest –
  1286. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  1287. ; #Warn ; Enable warnings to assist with detecting common errors.
  1288. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  1289. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  1290.  
  1291. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  1292.  
  1293. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  1294.  
  1295. beginning := 20000 // speedMultiplier
  1296.  
  1297. spiderField := 7350 // speedMultiplier
  1298.  
  1299. spiderCorner := 2625 // speedMultiplier
  1300.  
  1301. rampStart := 7350 // speedMultiplier
  1302.  
  1303. rampEnd := 10200 // speedMultiplier
  1304.  
  1305. corner := 2625 // speedMultiplier
  1306.  
  1307. safetyStart := 3600 // speedMultiplier
  1308.  
  1309. safetyEnd := 4000 // speedMultiplier
  1310.  
  1311. safetyExit := 2400 // speedMultiplier
  1312.  
  1313. entrance := 1500 // speedMultiplier
  1314.  
  1315. farmTime := 2000 // speedMultiplier
  1316.  
  1317. spiderTime := 3000
  1318.  
  1319. safetyTime := 10000
  1320.  
  1321. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  1322.  
  1323. pollinationCycles := 2 ; This is how many times you will circle the field until you reset.
  1324.  
  1325. f8::
  1326. {
  1327.  
  1328. ; setup start
  1329.  
  1330. Send, {a down}
  1331. Sleep, %start%
  1332. Send, {a up}
  1333.  
  1334. Send, {s down}
  1335. Sleep, %beginning%
  1336. Send, {s up}
  1337.  
  1338. Sleep, %spiderTime%
  1339.  
  1340. Send, {Space down}
  1341. Sleep, %spiderTime%
  1342. Send, {Space up}
  1343.  
  1344. Send, {d down}
  1345. Sleep, %spiderField%
  1346. Send, {d up}
  1347.  
  1348. Send, {w down}
  1349. Sleep, %spiderCorner%
  1350. Send, {w up}
  1351.  
  1352. Send, {d down}
  1353. Sleep, %rampStart%
  1354. Send, {d up}
  1355.  
  1356. Send, {s down}
  1357. Sleep, %rampEnd%
  1358. Send, {s up}
  1359.  
  1360. Send, {d down}
  1361. Sleep, %corner%
  1362. Send, {d up}
  1363.  
  1364. Send, {s down}
  1365. Sleep, %safetyStart%
  1366. Send, {s up}
  1367.  
  1368. Send, {d down}
  1369. Sleep, %safetyEnd%
  1370. Send, {d up}
  1371.  
  1372. Sleep, %safetyTime%
  1373.  
  1374. Send, {a down}
  1375. Sleep, %safetyExit%
  1376. Send, {a up}
  1377.  
  1378. Send, {s down}
  1379. Sleep, %entrance%
  1380. Send, {s up}
  1381.  
  1382. Sleep, %pollinationTime%
  1383.  
  1384. ; setup end
  1385.  
  1386. ; pollination start
  1387.  
  1388. Loop, %pollinationCycles%
  1389. {
  1390. Send, {s down}
  1391. Sleep, %farmTime%
  1392. Send, {s up}
  1393.  
  1394. Sleep, %pollinationTime%
  1395.  
  1396. Send, {d down}
  1397. Sleep, %farmTime%
  1398. Send, {d up}
  1399.  
  1400. Sleep, %pollinationTime%
  1401.  
  1402. Send, {w down}
  1403. Sleep, %farmTime%
  1404. Send, {w up}
  1405.  
  1406. Sleep, %pollinationTime%
  1407.  
  1408. Send, {a down}
  1409. Sleep, %farmTime%
  1410. Send, {a up}
  1411.  
  1412. Sleep, %pollinationTime%
  1413. }
  1414.  
  1415. ; pollination end
  1416.  
  1417. ; Reset mechanic
  1418.  
  1419. Send, {esc}
  1420. Sleep, 500
  1421.  
  1422. Send, {r}
  1423. Sleep, 500
  1424.  
  1425. Send, {Enter}
  1426. Sleep, 20000
  1427. }
  1428. return
  1429. Rose Field –
  1430. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  1431. ; #Warn ; Enable warnings to assist with detecting common errors.
  1432. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  1433. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  1434.  
  1435. speedMultiplier := 1.0 ; Allows the script to fit the path to your speed.
  1436.  
  1437. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  1438.  
  1439. beginning := 20000 // speedMultiplier
  1440.  
  1441. spiderField := 7350 // speedMultiplier
  1442.  
  1443. spiderCorner := 2625 // speedMultiplier
  1444.  
  1445. rampStart := 7350 // speedMultiplier
  1446.  
  1447. rampEnd := 10200 // speedMultiplier
  1448.  
  1449. corner := 2625 // speedMultiplier
  1450.  
  1451. safetyStart := 500 // speedMultiplier
  1452.  
  1453. treeDetour := 4000 // speedMultiplier
  1454.  
  1455. entrance := 14000 // speedMultiplier
  1456.  
  1457. lining := 2000 // speedMultiplier
  1458.  
  1459. farmTime := 2500 // speedMultiplier
  1460.  
  1461. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  1462.  
  1463. spiderTime := 3000
  1464.  
  1465. safetyTime := 10000
  1466.  
  1467. scorpionLure := 2000
  1468.  
  1469. scorpionFight := 4000
  1470.  
  1471. pollinationCycles := 4 ; This is how many times you will circle the field until you reset.
  1472.  
  1473. f8::
  1474. {
  1475.  
  1476. ; setup start
  1477.  
  1478. Send, {a down}
  1479. Sleep, %start%
  1480. Send, {a up}
  1481.  
  1482. Send, {s down}
  1483. Sleep, %beginning%
  1484. Send, {s up}
  1485.  
  1486. Sleep, %spiderTime%
  1487.  
  1488. Send, {Space down}
  1489. Sleep, %spiderTime%
  1490. Send, {Space up}
  1491.  
  1492. Send, {d down}
  1493. Sleep, %spiderField%
  1494. Send, {d up}
  1495.  
  1496. Send, {w down}
  1497. Sleep, %spiderCorner%
  1498. Send, {w up}
  1499.  
  1500. Send, {d down}
  1501. Sleep, %rampStart%
  1502. Send, {d up}
  1503.  
  1504. Send, {s down}
  1505. Sleep, %rampEnd%
  1506. Send, {s up}
  1507.  
  1508. Send, {d down}
  1509. Sleep, %corner%
  1510. Send, {d up}
  1511.  
  1512. Send, {s down}
  1513. Sleep, %safetyStart%
  1514. Send, {s up}
  1515.  
  1516. Sleep, %safetyTime%
  1517.  
  1518. Send, {d down}
  1519. Sleep, %treeDetour%
  1520. Send, {d up}
  1521.  
  1522. Send, {w down}
  1523. Sleep, %entrance%
  1524. Send, {w up}
  1525.  
  1526. Sleep, %scorpionLure%
  1527.  
  1528. Send, {Space down}
  1529. Sleep, %scorpionFight%
  1530. Send, {Space up}
  1531.  
  1532. Send, {d down}
  1533. Sleep, %lining%
  1534. Send, {d up}
  1535.  
  1536. Sleep, %pollinationTime%
  1537.  
  1538. ; setup end
  1539.  
  1540. ; pollination start
  1541.  
  1542. Loop, %pollinationCycles%
  1543. {
  1544. Send, {w down}
  1545. Sleep, %farmTime%
  1546. Send, {w up}
  1547.  
  1548. Sleep, %pollinationTime%
  1549.  
  1550. Send, {a down}
  1551. Sleep, %farmTime%
  1552. Send, {a up}
  1553.  
  1554. Sleep, %pollinationTime%
  1555.  
  1556. Send, {a down}
  1557. Sleep, %farmTime%
  1558. Send, {a up}
  1559.  
  1560. Sleep, %pollinationTime%
  1561.  
  1562. Send, {s down}
  1563. Sleep, %farmTime%
  1564. Send, {s up}
  1565.  
  1566. Sleep, %pollinationTime%
  1567.  
  1568. Send, {d down}
  1569. Sleep, %farmTime%
  1570. Send, {d up}
  1571.  
  1572. Sleep, %pollinationTime%
  1573.  
  1574. Send, {d down}
  1575. Sleep, %farmTime%
  1576. Send, {d up}
  1577.  
  1578. Sleep, %pollinationTime%
  1579. }
  1580.  
  1581. ; pollination end
  1582.  
  1583. ; reset mechanic
  1584.  
  1585. Send, {esc}
  1586. Sleep, 500
  1587.  
  1588. Send, {r}
  1589. Sleep, 500
  1590.  
  1591. Send, {Enter}
  1592. Sleep, 20000
  1593. }
  1594. return
  1595. Werewolf Realm –
  1596. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  1597. ; #Warn ; Enable warnings to assist with detecting common errors.
  1598. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  1599. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  1600.  
  1601. speedmultiplier := 1.0 ; Allows the script to fit the path to your speed.
  1602.  
  1603. start := 6510 // speedMultiplier ; This is the variable putting you at the starting position of the path. The number is different for different spawns, left to right they are - 1890, 4200, 6510, 8820, 11130
  1604.  
  1605. beginning := 19950 // speedmultiplier
  1606.  
  1607. firstCorner := 7350 // speedmultiplier
  1608.  
  1609. rampLining := 2625 // speedmultiplier
  1610.  
  1611. rampStart := 7350 // speedmultiplier
  1612.  
  1613. rampEnd := 10200 // speedmultiplier
  1614.  
  1615. insideCorner := 2625 // speedmultiplier
  1616.  
  1617. safetyStart := 3600 // speedmultiplier
  1618.  
  1619. safetyEnd := 4000 // speedmultiplier
  1620.  
  1621. safetyExit := 2400 // speedmultiplier
  1622.  
  1623. treeStart := 2100 // speedmultiplier
  1624.  
  1625. treeHorizontal := 2100 // speedmultiplier
  1626.  
  1627. treeVertical := 1800 // speedmultiplier
  1628.  
  1629. cactusStart := 5000 // speedmultiplier
  1630.  
  1631. cactusHorizontal := 2250 // speedmultiplier
  1632.  
  1633. cactusVertical := 1575 // speedmultiplier
  1634.  
  1635. pumpkinStart := 3150 // speedmultiplier
  1636.  
  1637. pumpkinHorizontal := 2625 // speedmultiplier
  1638.  
  1639. pumpkinVertical := 1850 // speedmultiplier
  1640.  
  1641. treeEntrance := 3675 // speedmultiplier
  1642.  
  1643. spiderTime := 3000
  1644.  
  1645. safetyTime := 10000
  1646.  
  1647. pollinationTime := 10000 ; This is how long you will stand in a spot using your collector, or letting your bees do work. This is in milliseconds.
  1648.  
  1649. f8::
  1650. {
  1651. ; setup start
  1652.  
  1653. Send, {a down}
  1654. Sleep, %start%
  1655. Send, {a up}
  1656.  
  1657. Send, {s down}
  1658. Sleep, %beginning%
  1659. Send, {s up}
  1660.  
  1661. Sleep, %spiderTime%
  1662.  
  1663. Send, {Space down}
  1664. Sleep, %spiderTime%
  1665. Send, {Space up}
  1666.  
  1667. Send, {d down}
  1668. Sleep, %firstCorner%
  1669. Send, {d up}
  1670.  
  1671. Send, {w down}
  1672. Sleep, %rampLining%
  1673. Send, {w up}
  1674.  
  1675. Send, {d down}
  1676. Sleep, %rampStart%
  1677. Send, {d up}
  1678.  
  1679. Send, {s down}
  1680. Sleep, %rampEnd%
  1681. Send, {s up}
  1682.  
  1683. Send, {d down}
  1684. Sleep, %insideCorner%
  1685. Send, {d up}
  1686.  
  1687. Send, {s down}
  1688. Sleep, %safetyStart%
  1689. Send, {s up}
  1690.  
  1691. Send, {d down}
  1692. Sleep, %safetyEnd%
  1693. Send, {d up}
  1694.  
  1695. Sleep, %safetyTime%
  1696.  
  1697. Send, {a down}
  1698. Sleep, %safetyExit%
  1699. Send, {a up}
  1700.  
  1701. Sleep, %pollinationTime%
  1702.  
  1703. ; setup end
  1704.  
  1705. ; pollination start
  1706.  
  1707. Send, {w down}
  1708. Sleep, %treeStart%
  1709. Send, {w up}
  1710.  
  1711. Sleep, %pollinationTime%
  1712.  
  1713. Send, {d down}
  1714. Sleep, %treeHorizontal%
  1715. Send, {d up}
  1716.  
  1717. Sleep, %pollinationTime%
  1718.  
  1719. Send, {w down}
  1720. Sleep, %treeVertical%
  1721. Send, {w up}
  1722.  
  1723. Sleep, %pollinationTime%
  1724.  
  1725. Send, {a down}
  1726. Sleep, %treeHorizontal%
  1727. Send, {a up}
  1728.  
  1729. Sleep, %pollinationTime%
  1730.  
  1731. Send, {a down}
  1732. Sleep, %cactusStart%
  1733. Send, {a up}
  1734.  
  1735. Sleep, %pollinationTime%
  1736.  
  1737. Send, {s down}
  1738. Sleep, %cactusVertical%
  1739. Send, {s up}
  1740.  
  1741. Sleep, %pollinationTime%
  1742.  
  1743. Send, {a down}
  1744. Sleep, %cactusHorizontal%
  1745. Send, {a up}
  1746.  
  1747. Sleep, %pollinationTime%
  1748.  
  1749. Send, {w down}
  1750. Sleep, %cactusVertical%
  1751. Send, {w up}
  1752.  
  1753. Sleep, %pollinationTime%
  1754.  
  1755. Send, {a down}
  1756. Sleep, %cactusHorizontal%
  1757. Send, {a up}
  1758.  
  1759. Sleep, %pollinationTime%
  1760.  
  1761. Send, {s down}
  1762.  
  1763. Sleep, %cactusVertical%
  1764. Send, {s up}
  1765.  
  1766. Sleep, %pollinationTime%
  1767.  
  1768. Send, {s down}
  1769. Sleep, %pumpkinStart%
  1770. Send, {s up}
  1771.  
  1772. Sleep, %pollinationTime%
  1773.  
  1774. Send, {s down}
  1775. Sleep, %pumpkinVertical%
  1776. Send, {s up}
  1777.  
  1778. Sleep, %pollinationTime%
  1779.  
  1780. Send, {d down}
  1781. Sleep, %pumpkinHorizontal%
  1782. Send, {d up}
  1783.  
  1784. Sleep, %pollinationTime%
  1785.  
  1786. Send, {w down}
  1787. Sleep, %pumpkinVertical%
  1788. Send, {w up}
  1789.  
  1790. Sleep, %pollinationTime%
  1791.  
  1792. Send, {d down}
  1793. Sleep, %pumpkinHorizontal%
  1794. Send, {d up}
  1795.  
  1796. Sleep, %pollinationTime%
  1797.  
  1798. Send, {s down}
  1799. Sleep, %pumpkinVertical%
  1800. Send, {s up}
  1801.  
  1802. Sleep, %pollinationTime%
  1803.  
  1804. Send, {d down}
  1805. Sleep, %treeEntrance%
  1806. Send, {d up}
  1807.  
  1808. Sleep, %pollinationTime%
  1809.  
  1810. Send, {d down}
  1811. Sleep, %treeHorizontal%
  1812. Send, {d up}
  1813.  
  1814. Sleep, %pollinationTime%
  1815.  
  1816. Send, {s down}
  1817. Sleep, %treeVertical%
  1818. Send, {s up}
  1819.  
  1820. Sleep, %pollinationTime%
  1821.  
  1822. Send, {a down}
  1823. Sleep, %treeHorizontal%
  1824. Send, {a up}
  1825.  
  1826. Sleep, %pollinationTime%
  1827.  
  1828. ; pollination end
  1829.  
  1830. ; Reset mechanic
  1831.  
  1832. Send, {esc}
  1833. Sleep, 500
  1834.  
  1835. Send, {r}
  1836. Sleep, 500
  1837.  
  1838. Send, {Enter}
  1839. Sleep, 20000
  1840.  
  1841. }
  1842. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement