veedubman87 Posted June 20, 2021 Share Posted June 20, 2021 (edited) This is just a simple fisher with basic GUI. Script download - At bottom of post. Current Features Fish - Shrimp, Anchovies, Lobster, Trout, Salmon, Swordfish Banking Automatically gathers required items ( if there in the bank ) Profiles Planned Updates New fish - Karambwanji, Karambwan, Tuna, Anglerfish, Bass, Cod, Dark crab, Herring, Monkfish Different drop patterns Restocking New Gui Quote veedsFisher.zip - Updated gui - Added loading profiles in the Gui If you do not know how to install the script -Extract the zip file into you Scripts folder. -The scripts folder should be in "Users\{username}\EpicBot\scripts" -If the scripts folder is not there you need to make one. Edited October 26 by veedubman87 1 Quote Link to comment Share on other sites More sharing options...
Proto Posted June 21, 2021 Share Posted June 21, 2021 Noice! :D One thing that comes up from the top of my head, is the way you pass the CTX into the functions and also the class Try doing what's below: private final Data data; private final Bank bank; private final Fish fish; private final Walk walk; private final Inventory inventory; @Override public boolean onStart(String... strings) { data = new Data(getAPIContext()); bank = new Bank(getAPIContext()); fish = new Fish(getAPIContext()); walk = new Walk(getAPIContext()); inventory = new Inventory(getAPIContext()); new Gui(getAPIContext()); System.out.println("Staring veedsFisher"); return true; } That way, you don't need to pass it for each function since you already declared it as ctx in your sub-class :) Quote Link to comment Share on other sites More sharing options...
veedubman87 Posted June 21, 2021 Author Share Posted June 21, 2021 1 hour ago, Proto said: Noice! 😄 One thing that comes up from the top of my head, is the way you pass the CTX into the functions and also the class Try doing what's below: private final Data data; private final Bank bank; private final Fish fish; private final Walk walk; private final Inventory inventory; @Override public boolean onStart(String... strings) { data = new Data(getAPIContext()); bank = new Bank(getAPIContext()); fish = new Fish(getAPIContext()); walk = new Walk(getAPIContext()); inventory = new Inventory(getAPIContext()); new Gui(getAPIContext()); System.out.println("Staring veedsFisher"); return true; } That way, you don't need to pass it for each function since you already declared it as ctx in your sub-class 🙂 Thx I was wondering why that wasn’t working I’ll fix it when I get home. Quote Link to comment Share on other sites More sharing options...
TheKevin Posted June 25, 2021 Share Posted June 25, 2021 NNNIIICCCEEE Quote Link to comment Share on other sites More sharing options...
lostinhyvee911 Posted August 16, 2021 Share Posted August 16, 2021 How do I use this/get this to work in the bot? Quote Link to comment Share on other sites More sharing options...
lah97 Posted September 11, 2021 Share Posted September 11, 2021 How do you get the script to work on the bot? Quote Link to comment Share on other sites More sharing options...
Dboss0413 Posted September 12, 2021 Share Posted September 12, 2021 A tutorial would be nice.. ive been trying to figure it out myself. But I need help!?! Quote Link to comment Share on other sites More sharing options...
veedubman87 Posted October 4, 2021 Author Share Posted October 4, 2021 On 8/16/2021 at 7:49 PM, lostinhyvee911 said: How do I use this/get this to work in the bot? Download the zip file and extract it into your scripts folder. Quote Link to comment Share on other sites More sharing options...
Eredinek Posted October 29, 2021 Share Posted October 29, 2021 Bro how i can connect you fast please Quote Link to comment Share on other sites More sharing options...
DarkestPrayer669 Posted January 7, 2022 Share Posted January 7, 2022 On 10/4/2021 at 3:38 AM, veedubman87 said: Download the zip file and extract it into your scripts folder. where is the scripts folder?? Quote Link to comment Share on other sites More sharing options...
veedubman87 Posted January 28, 2022 Author Share Posted January 28, 2022 On 1/7/2022 at 9:29 AM, DarkestPrayer669 said: where is the scripts folder?? Look at this tutorial. Quote Link to comment Share on other sites More sharing options...
3oro Posted July 28 Share Posted July 28 (edited) On 9/12/2021 at 12:00 PM, Dboss0413 said: A tutorial would be nice.. ive been trying to figure it out myself. But I need help!?! There is a tutorial in the forum find it in development it’s super easy copy this to a Text file make it .Java and saved in ALL FILES. Save to anywhere then move into the Epic bot scripts folder and it should show up. But look at the tutorial on the forum in development. It explains it all there I started today and now can make my own scripts without knowing code just copying them. It’s so simpleo. Here is the link.. Edited July 28 by 3oro Update Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.