Jump to content

Bobrocket

Members
  • Posts

    1664
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    100%

Posts posted by Bobrocket

  1. wasn't u just buying gp O.O secret reseller?.

     

    Trying to convert my BTC into Skrill. Waives the skrill & bank fees for me and its actually quicker than finding a BTC -> Skrill exchanger

    (Also I've been reselling small amounts of gold for a few months now lol, hardly secret)

  2. I prolly don't stand a chance but i'll give it a shot

     

    How often/how long can you bot: ~8hr

    How many accounts can/will you bot on: 1

    What is your slayer level: 40 and climbing

    What slayer masters can you reach:  Turael  MazChna Vannaka, and soon to be Chaeldar 

    What is your skype: Nerd19881

    Started a new account a week ago with the plans to spam slayer on it, I Currently just use auto fighters.

    About a year ago i made an account and used a slayer bot to max combat stats + 85 slayer, hoping to do that again.

      

    Beta Tester

    How often/how long can you bot: 6+

    How many accounts can/will you bot on: 1

    What is your slayer level: 70

    What slayer masters can you reach: Every master

    What is your skype: buddy.osrs

    I'll add you guys on Skype when I get home, thanks!

  3. Want to be part of OmniSlayer? Now's your chance!

    Helping me create OmniSlayer will give you:

    • A one month auth for OmniSlayer
    • Your name on some super shiny list somewhere
    • A picture of my left nipple (other arrangements can be made)

    What are you expected to do?

    Data Collectors

    • Manually run slayer tasks from specified masters, finding monster locations (along with combat level and name) and reporting them to me
    • Collect data for specified actions (eg what happens when you press this  button?) with the OSBot entity debugger settings

    Beta Testers

    • Run the script in its beta state, reporting everything that went both right and wrong
    • Expanding on issues when needed - eg this slayer monster does not seem to work when running directly from Turael, or this teleport method is not properly detected - to help improve the script for everyone
    • Provide progress reports for the script

    NOTE: as a beta tester, you will be asked to not leak anything that could paint the script in a negative light. This is because, as a beta, things are expected to be unstable and thus problems you bring up will not be in the final version.

     

    Sounds great! How do I get in?

    Fill in the following form:

     

    Data Collector

    What areas can you reach:

    What is your slayer level:

    What slayer masters can you reach:

    What is your skype:

     

    Beta Tester

    How often/how long can you bot:

    How many accounts can/will you bot on:

    What is your slayer level:

    What slayer masters can you reach:

    What is your skype:

     

    You can either post here or private message me your applications. I will add you on Skype when I have accepted you.

     

    Thanks!

  4. nice! May I ask, where did you get the image resources from?

     

    Also, you should add a 'grab currently equipped' buttonez which will get the data from ur current player ingame. I'm sure you'll add that anyway tho

     

    Good luck! smile.png

    apa

     

    Private API, and I will definitely add that but since this is standalone it's kinda hard ;)

     

  5.  

    Welcome to OSBot! I've gone ahead and authed you my most successful script, OmniPocket, for 48 hours so you can get a feel for the quality scripts in this community ;)

     
     
     
    • Like 1
  6. Wow! This worked! Thanks! 

     

    But, can you explain why using a sleep, fixed this problem? just for my own knowledge.

     

    Code runs line by line. Let's say you had something like this:

    NPC goblin = getNpcs().closest("Goblin");
    goblin.interact("Attack");
    getBank().open();
    

    This will first attack the goblin and then open the bank. HOWEVER, there is a delay for game actions that isnt there in code. This means that you will click the goblin and then immediately try and open the bank. Sleeping between code essentially means that you're waiting until the next line.

    NPC goblin = getNpcs().closest("Goblin");
    goblin.interact("Attack");
    sleep(600);
    getBank().open();
    

    sleep(600) will wait 600ms (also known as 1 tick in OSRS) and then perform the next line of code.

     

    EDIT: There is also something known as asynchronous code, which means that the code runs but still allows the next line(s) to run.

    • Like 1
  7.  

    With your object code:

    • You may get a NullPointerException if the tree is too far away, which will break your code and make you cry
    • If a tree is too far away, but not null, you may not be able to interact with it. You will need to walk up to it first.
    if (yewTree != null && yewTree.exists() && getMap().distance(yewTree) <= 11) //valid yew tree
    
    EDIT: shameless self plug here, using OmniAPI might shrink your code a little:
    Entity yewTree = getEntityFinder().findClosest("Yew", (tree) -> (yewArea.contains(tree.getPosition()) && getMap().distance(tree) <= 11));
    yewTree.interact("Chop-down"); //100% safe to do this, as OmniAPI returns empty objects instead of null
    
     
     
    • Like 2
×
×
  • Create New...