Jump to content

Precise

Lifetime Sponsor
  • Posts

    1854
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Precise

  1. once he has a program which can do the 3 times a day work, no problem gj OP
  2. Precise

    HELP

    Thursday updates, it is down for everyone. please wait patiently for a developer to fix.
  3. which line does the NPE occur on?
  4. Precise

    GroundItem

    i have looting in my cow script on mirror, no problems, maybe try lambda expressions?
  5. lmao, people wonder why they get banned when they bot 20 out of the 48 hours it lasted on a fresh account xD because this isn't suspicious is it? xD sorry for your loss, but just bot like a human, realistic hours :P
  6. Precise

    Banned

    http://osbot.org/forum/topic/79213-all-accounts-banned/
  7. you shouldnt have botted 24/7 on fishers which caused a chain ban to your important accounts xD check your ip now (google will show you) unplug router 5-20 mins plug in and check ip again and my ip changes for me :P
  8. i always had trouble with #execute(Event e); my solution was: this.getBot().getEventExecutor().execute(ce); Hope this helps! Precise.
  9. Precise

    help please

    it is the weekly update by jagex, wait for a dev to push a fix.
  10. what if you press start, how would you "close it"?
  11. if no one else is having a problem, then it isnt osbots fault.
  12. there has been an rs update, wait patiently for a fix.
  13. Precise

    new to osbot

    http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/
  14. what if inventory is empty? it wont mine just read through the logic and see for yourself ^_^
  15. well you are checking whether the inventory is empty except for the ore, and so it will drop it since you have just mined it. instead you want to check if the !getInventory().isFull() then mine else drop ^_^
  16. what is happening exactly? your getState isnt efficient at all and will cause you issues. private State getState() { if(!myPlayer().isAnimating() && myPlayer().getInteracting() == null && !myPlayer().isMoving() && warrior != null) { return State.killWarrior; } else if (!myPlayer().isAnimating() && myPlayer().getInteracting() == null && !myPlayer().isMoving() && warrior != null) { return State.banking; } else if (!bank_area.contains(myPlayer())) return State.walk_bank; else if (myPlayer().isAnimating() && myPlayer().getInteracting() != null) { return State.walk_warrior; } return (State.idle); } have a read through this, you first if and else if statements are exactly the same yet return different states and some of it doesn't really make sense at all. do something like this: private State getState() { if(/*doesnt need to bank*/) { if(warrior != null) { if(myPlayer().getInteracting() == null && !myPlayer().isUnderAttack()) return State.killWarrior; else return State.idle; } else { return State.walk_warrior; } } else if(/* at bank*/) { //return bank } else { return State.walk_bank; } }
  17. would like the colour of my name to match my ava thanks!
  18. you can make this in the bot client xDD
  19. i have bought a few games from there no problems, they are legit
  20. it is unreadable, maybe change the format? ^_^ use names instead of ids
×
×
  • Create New...