Skip to content

Instantly share code, notes, and snippets.

@auxiliary-character
Created November 22, 2015 04:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save auxiliary-character/d217b6c525e5d26f2340 to your computer and use it in GitHub Desktop.
Save auxiliary-character/d217b6c525e5d26f2340 to your computer and use it in GitHub Desktop.
$${{
#wait_time = 1;
#reset_time = 2;
if(fishing);
log("Done fishing.");
unset(fishing);
else;
log("Starting fishing.");
set(fishing);
#y_start = %YPOS%
do;
#y_current = %YPOS%;
if(%#y_current% < %#y_start%);
key(use);
wait(%#wait_time%);
key(use);
wait(%#reset_time%);
endif;
while(fishing);
endif;
}}$$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment