Jump to content

Apaec

Scripter III
  • Posts

    11137
  • Joined

  • Last visited

  • Days Won

    88
  • Feedback

    100%

Everything posted by Apaec

  1. Update! Version 1.53 Complete pathwalking rework! Script will now use an official pathwalking system which is much more reliable. Please note that this was a big update which required some major engine changes so please don't hesitate to let me know if something is still not working completely (I didn't manage to test this fix on all locations). Added minimap pathwalking debug - Script will now display the path it's currently (or just finished) walking on the minimap. Enjoy! apa
  2. Update! Version 1.07 Added 'Logout on stop' option to the Gui (under advanced tab). Selected by default. If deselected, this will cause the script not to log out when you press the stop button on the bot. Extended path from ladder to shrine to initial interaction consistency Fixed error where script would not open bank if using food Enjoy! apa
  3. Unique as in one that people change their default one to (like mine?) apa
  4. Have found the problem and am working on a fix as we speak! The update will be out some time today. I will post an update on this thread when I release the fix apa
  5. Between this and this: i've seen a bunch of people with the top picture and most with the bottom one. Is there a difference? or is the top one people changing their picture to it and the bottom one the default? or is there a specific criteria to get the top one as default? i'm curious x) apa
  6. they taste the same but water tastes nicer
  7. Uh If you're a little lost, i'd recommend putting curly brackets around each if statement, when you're learning it's an easy way to get confused if you leave them out. (otherwise the if statement only applies to the next line) Format it, look at it, and see if you can figure out what you've done wrong apa
  8. That probably means it's found the tree and is trying to interact however it doesn't find the interaction option 'Chop down'. Perhaps the option is 'Cut down'? I don't see anything wrong with the code so not sure what else could be the problem. Maybe interactions are damaged following todays RS update. apa
  9. Feedback: Structure of code isn't great, but it should work. You may have got the name of the tree wrong (not sure what it is ingame, but have a feeling it's 'Yew tree' ? You haven't completed the else statement (altho this isnt really a problem until ur inventory is full. What exactly is the problem you are experiencing? apa
  10. Will be working on a fix for this soon. Which ammo are you using?
  11. This bug also happens on injection I believe. But not sure, maybe you have a tile wrong on your path? try drawing the path to your minimap and then see if there are any outliers. apa
  12. Is it trying to walk the same path or does the path it's trying to walk change? This might also be worth taking a look at: http://osbot.org/forum/topic/83025-mirror-client-bug-report-positions/ apa
  13. hey Check out the categories in the store. There's plenty of choice for moneymaking etc! apa
  14. strange o.o will be taking a look
  15. Try without food. (I'll do some tests with food too, previously I wasn't using food) apa
  16. Wtf it's working perfectly for me so I see no reason why it shouldn't for you Are you using food perhaps? apa
  17. Apaec

    2 Local Bots

    try this: Close client Open local scripts folder, move ALL scripts in there to your desktop Launch osbot Move ALL scripts BACK into local scripts folder Refresh scripts Hopefully that should work apa
  18. yep. Not possible because as soon as u move it, I think it will attempt to create a new one as it can't find it. The devs could make it changeable but it would be a lot of work and not particularly helpful (alot of major software tools are similarly rooted!) apa
  19. Are you sure you have cowhides + unicorn horn in the bank? I just ran another test and it works perfectly, even in the new version o.o apa
  20. How strange! What setup did you use? will run a quick test now. apa Edit: just did a quick test run and everything worked perfectly... Withdrew inventory without a single problem, proceeded to run to shrine perfectly! Does it log any errors in the console (eg did you miss anything in ur bank?) apa
  21. Strange, might be caused by mirror mode (or even deadman mode). Does it work ok in injection? and in osrs? Will be doing some testing later this week (and will be pushing updates to my cooker script as well!), but the code hasn't changed so something else must have! apa
  22. wtf is this You could either use streams or there's a simpler way: for (Item i: inventory.getItems()) { if (i != null && i.getName().equals("Bones")) { inventory.interact(i,"Bury"); } } //wrote in response box so sorry if any errors merry christmas apa
  23. Have a snippet for a simple cross which I use in my unicows script: @Override public void onPaint(Graphics2D g) { g.setRenderingHints(new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON)); //anti aliasing g.drawLine(script.mouse.getPosition().x - 5, script.mouse.getPosition().y + 5, script.mouse.getPosition().x + 5, script.mouse.getPosition().y - 5); //line 1 g.drawLine(script.mouse.getPosition().x + 5, script.mouse.getPosition().y + 5, script.mouse.getPosition().x - 5, script.mouse.getPosition().y - 5); //line 2 } apa
×
×
  • Create New...