Jump to content

Bobrocket

Members
  • Posts

    1664
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    100%

Everything posted by Bobrocket

  1. 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. Selling this for anything except PayPal (Skrill, BTC, UKBT, UK amazon gift card etc) PM me or add my Skype (Bobrocket_01) to talk.
  3. Looking to buy as much 07GP as possible. Rates are negotiable. Skype: Bobrocket_01
  4. I might see about getting everyone a free 48h auth when the script is fully released... ;)
  5. 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!
  6. If I don't have a private beta out by Christmas you can ban me; I very much plan on releasing this.
  7. Why doesn't yours allow this? ;)
  8. Private API, and I will definitely add that but since this is standalone it's kinda hard ;)
  9. Bobrocket

    Hello

    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 ;)
  10. 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.
  11. It's nothing serious, just an error that pops up like 24/7 in newer OSBot versions.
  12. You're popping out fuck loads of scripts man, good job!
  13. 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
  14. Here's a map that's been cropped and shrinked to the same size as Dunnkers, making sure that the calculations are still 100% (I know it's dynamic calculations but I got some bad results with larger images) http://i.imgur.com/v24nROZ.jpg
  15. Welcome to OSBot! For starters, script purchases are done via the script store I've also authed you my most successful script, OmniPocket, for 3 days (72 hours) so you can get a feel for true quality scripts ;)
  16. You move your yaw to anywhere between 200 and 350 degrees in the first code, and then 50 to 90 degrees. Your camera moves the same way because it's the quickest way to move.
×
×
  • Create New...