Jump to content

veedubman87

Scripters
  • Posts

    15
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by veedubman87

  1. On 2/11/2022 at 8:38 PM, Ho Lee said:

    Hii ! some feedback on the questing bot, hope this helps to fine tune your script

    Cooks assistant

    > bot stuck at chef chat to start quest, kept choosing last option which goes in a loop.

    > bot stuck after gathering egg

    Goblin Diplomacy
    > after buying 3x goblin mail, bot collects from GE, the goblin mails would be in noted form, bot does not detect notes and continues to loop buy goblin mail

     

    The Goblin Diplomacy issue should be fixed and I'll rewrite cooks assistant soon.

  2. On 2/11/2022 at 8:38 PM, Ho Lee said:

    Hii ! some feedback on the questing bot, hope this helps to fine tune your script

    Cooks assistant

    > bot stuck at chef chat to start quest, kept choosing last option which goes in a loop.

    > bot stuck after gathering egg

    Goblin Diplomacy
    > after buying 3x goblin mail, bot collects from GE, the goblin mails would be in noted form, bot does not detect notes and continues to loop buy goblin mail

     

    Thx for the feedback I will fix this I needed to rewrite cooks assistant anyway.

  3. On 1/7/2022 at 12:51 AM, cpannell said:

    Is it just my account or does the bot only have a few quests it can do for us?

    What other quests would you like to see added.

  4. 5 minutes ago, Mendorith said:

    this is awesome veed...looking forward to further releases...i'm curious how you'll handle the SoA quest since you need a partner

    Lol didnt even know you need a partner might just skip that one for now.

  5. You will need the quest items in your bank the script will take them out by itself.

    Current Quests

    • Romeo & Juliet
    • X Marks the Spot
    • Goblin Diplomacy

    Planned Quests

    • Demon Slayer
    • Cooks Assistant
    • Sheep Shearer
    • The Restless Ghost
    • Witch's Potion
    • Doric's Quest
    • Waterfall Quest

    Planned Updates

    • New Gui
    • Quest Queue

    Downloads

    Quote

    VeedsQuester.zip

    - Removed cooks assistant will be added again after the rewrite

    If you do not know how to install this 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.

     

    This Script is no longer being actively developed

    You can access the source code here -> https://github.com/ItsVeed/VeedsQuester

     

     

    • Like 1
  6. 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.

  7. java_F4pfBnFC6C.png.fd286b22de12b6f66db490b8c228138f.png

    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.

     

    • Thanks 1
×
×
  • Create New...