Jump to content

Mysteryy

Scripter II
  • Posts

    2568
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Posts posted by Mysteryy

  1. Just wanted to check the price for an account I've had for a long time but haven't used in ~2 years now. It's an old RS3 main that I also played OSRS on for a while.

    I'm not the original owner but have owned it for many years now without any issues and have most of the original info still.

     

    I'm really looking for OSRS GP for the account, but for price checking just curious what it's worth in USD.

     

    OSRS

    OSRS-Levels.pngOSRS-Summary.png

     

     

     

    RS3

    RS3-Levels.jpgVet15-Cape.jpg

  2. On 9/24/2018 at 10:03 AM, Ragnar Lothbrok said:

    Looks good, had a quick look at the source and noticed you'll try and pick from the Cadava bush even if there's no berries to be picked.

    Here's a snippet that will pick from the closest bush with berries:

    
    Entity bush = getObjects().closest(b -> b != null && b.getName().equals("Cadava bush") && b.getModelIds().length > 1);
    if (bush != null) {
        if (bush.interact("Pick-from")) {
        	new ConditionalSleep(5000) {
                @Override
                public boolean condition() throws InterruptedException {
                    return getInventory.contains("Cadava berries");
                }
            }.sleep();
        }
    }

     

    ConditionalSleep2 pls :doge:

  3. 1 hour ago, gosuu 55 said:

     

    so there is a chance to recive another warning?,the ban has expired backed to green safe lane

    I have an account that got a 2 day ban a couple of years back. After that I stopped botting on it because I didnt want to risk another ban, 2 day or perm. 

    From my experience 2 day bans are more rare, its usually a perm ban, so why push your luck. 

    • Like 1
  4. You will need to provide something useful. I dont know if osbot has any crash logs, or if you can just rely on the JVM crash logs. At minimum you should be able to get your jvm crash log. When JVM crashes it should dump out an error log with a name like 'hs_err_pid123.log' but 123 will vary depending on the process id at that time. See if you can find anything like that in your home directory, or osbot directory. The path can be changed, so it could be anywhere though. 

  5. 9 minutes ago, hreyvirtue said:

    That worked,

    thank you so much :3

    Yea also, try using 270, 3 instead of 270, 5.

    Let me know if that works, just curious now.

     

     

    Edit: I told pat (because I also saw this same problem the other day). For me I used the same thing that I suggested to you and it worked. He took a look and said that getWidgetContainingText(text) ignores chatbox. Its probably to avoid falsely matching text if a user says something. Like if a user says a message with the word "spin" in it, it would match that message when really you wanted the spinning widget, not a message from some random user where they said the word "spin". 

  6. 8 minutes ago, hreyvirtue said:

    It was my first option, but didn't work so I tried the other way.  

    is this the wrong one?

     

    And i've tried 270,16 (white border around bow string) to no avail

    image.png

    Well I'm at work at the moment, so I cant really try anything. 

    But you might try like:

    RS2Widget spin = getWidgets().getWidgetContainingText(270, "What would you like to spin?"); //spin
    • Heart 1
  7. 21 hours ago, LoudPacks said:

    On a side note, runelite has puzzle solver. I think is has sudoku. Wouldn't be hard to convert theirs to OSBot. Most of it is math anyway.

    I dont need to convert anything, I wrote this 3.5 years ago.

    image.png.c8def5b69d693d316f74bfa4619f7449.png

     

    OSBot changed the method signature of one method that I used (for whatever reason), so literally updating that one call fixed the compile time errors. I just need to test it and see if anything else changed that would cause it to not run properly. I wrote the sudoku solving part and everything when I initially released it, I just wanna see if anything else changed in rs/osbot.

  8. Does anyone have an account that can do Sudoku I can borrow? I had a script a few years back and it broke because of one method that got changed in the osbot api. I wanna see if the script still works after I changed that, and probably update it if not. 

    In return you will receive my love (in whatever form you want). 

    • Like 1
×
×
  • Create New...