Gitea
2 years ago
5 changed files with 42 additions and 9 deletions
@ -0,0 +1,4 @@
|
||||
Manifest-Version: 1.0 |
||||
Created-By: 18.0.1.1 (N/A) |
||||
Main-Class: fisher |
||||
|
@ -1,10 +1,15 @@
|
||||
src_dir:='src/xyz/unbewohnte/albionFisher'
|
||||
release_dir:='release'
|
||||
jar_name:='albionFisher.jar'
|
||||
|
||||
jar: all |
||||
jar cvmf MANIFEST.txt $(jar_name) *.class && rm *.class
|
||||
|
||||
all: |
||||
javac -Werror $(src_dir)/*.java && cp $(src_dir)/*.class . && rm $(src_dir)/*.class
|
||||
mkdir -p $(release_dir)
|
||||
mv *.class $(release_dir)
|
||||
javac -Werror $(src_dir)/*.java && mv $(src_dir)/*.class .
|
||||
|
||||
# jar: all
|
||||
# jar cvfm fisher.jar Manifest.txt gui.class fisher.class bobber.png
|
||||
release: jar |
||||
mkdir -p $(release_dir)
|
||||
mv $(jar_name) $(release_dir)
|
||||
cp COPYING $(release_dir)
|
||||
cp README.md $(release_dir)
|
@ -0,0 +1,17 @@
|
||||
# albionFisher - albion online fisher bot |
||||
|
||||
# Compiling |
||||
`make jar` if you're on GNU/Linux, else - `javac src/xyz/unbewohnte/albionFisher/*.java` |
||||
|
||||
# Launch |
||||
`java -jar albionFisher.jar` |
||||
|
||||
# Usage |
||||
1. Open the game, make it to the water source |
||||
2. Set your cursor at the exact position where you want to drop the bobber |
||||
3. Look at the coordinates on the fisher's window and put them in the xy fields |
||||
4. By trial and error specify needed hold time in miliseconds so you could see ingame bobber being in the center of fisher's sight box (by clicking "fish" button) |
||||
5. With the same method set difference threshold (in most cases it is somewhere around 3-4 if you fish horizontally, 1-2 if vertically) |
||||
6. Start the bot again and leave the computer as is |
||||
|
||||
Moving the mouse automatically (though not very reliably) stops the bot so you can move onto the next spot or entirely stop fishing without manual click on "stop" button |
Loading…
Reference in new issue