Jump to content

SoulPlay Dridia's Potion Maker v2.0


Dridia
 Share

Recommended Posts

cant get the script to do anything it the gui pops up i enter options and the paint shows up but it doesn't make combat potions i have the harralander goat dust and water vials in bank for it

 

Realized it does work at skill x.p

Edited by rocket
Solution
Link to comment
Share on other sites

  • Replies 40
  • Created
  • Last Reply

Top Posters In This Topic

On 2017-10-19 at 5:25 PM, 6fanblades said:

cant get the script to do anything it the gui pops up i enter options and the paint shows up but it doesn't make combat potions i have the harralander goat dust and water vials in bank for it

 

Realized it does work at skill x.p

It works great for me. If you're trying to make Harralander Unf potion you'll need vial of water and Harralander clean herbs. If you're trying to mix Combat potion (3) you'll need Harralander Unf potion and Goathorn dust.

Link to comment
Share on other sites

  • 3 months later...
  • 4 weeks later...
  • 2 weeks later...
  • 2 weeks later...
  • 1 month later...

For those of you who might be struggling with the bot having to double bank after every inventory you can go into the BankingMethods file and do the following:

Add Time.sleep(1000, 1250); at the beginning of public static void doBank()

Spoiler

    public static void doBank() {
        final GameObject bank = GameObjects.getNearest(26972);
        Time.sleep(1000, 1250);
        if (bank != null && bank.getDistance() <= 3 && !Bank.isOpen()) {
            bank.interact("Bank");
            Methods.conditionalSleep(new SleepCondition() {
                @Override
                public boolean isValid() {
                    return Bank.isOpen();
                }
            }, 5000);
        }

Took me a bit to realize why it was doing it, pretty easy fix though :]

Link to comment
Share on other sites

  • 3 months later...
  • 1 month later...
  • Neo locked this topic
Guest
This topic is now closed to further replies.
 Share


×
×
  • Create New...