Everything posted by Precise
-
Please download MirrorClient jar.
there has been an rs update, wait patiently for a fix.
-
new to osbot
http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/
-
Need some help with powermining script
what if inventory is empty? it wont mine just read through the logic and see for yourself ^_^
-
Need some help with powermining script
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 ^_^
- Khal Experiments
-
Dragon Killer - Request
im working on stats on an account as we speak, so once completed ill start to work on it if i am not banned xD
-
My bot wont start for some reason...
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; } }
-
1 month free vip!
would like the colour of my name to match my ava thanks!
-
Question on virtual/double mouse
you can make this in the bot client xDD
-
Is this legit?
i have bought a few games from there no problems, they are legit
-
Problem with script
it is unreadable, maybe change the format? ^_^ use names instead of ids
-
How do you make transparent color?
i assume no fill? so g.drawRect
-
Staking Script
maybe, but i asked this too and was told it wouldn't be accepted.
-
Staking Script
Why it isn't allowed, I'm not sure. But it won't change anytime soon. http://osbot.org/forum/forum-181/announcement-25-scriptscripter-rules/
-
Free USB corrupted recovery tool needed!
I have been a retard and left all my maths coursework on my USB, i know it is dumb but i dont care about that. i went to print it off my laptop and now it is corrupt. anyone know any good programs for this which are free? tried so many already thanks! Precise
-
sorceress garden
i made one ages ago, ill give it another go once i have he levels.
-
Local scripts are not working
reporting it solved ^_^ hf botting!
-
Local scripts are not working
hmmm weird, using 2.3.77 no problems here.
-
Local scripts are not working
osbot version?
-
Local scripts are not working
This occurs when trying to run the script? probably removed API which is either duplicates or not used anymore. Solution: open up the source in an IDE and correct it.
- Some Zen Scripts
-
Is mirror mode still down for you guys?
how isn't it working? being vague doesn't help us. and yes it works for me.
-
MirrorClient v1.055
this is a core bug which is known by the developers. check the page of the latest release of the client. (not mirror)
-
MirrorClient v1.055
this isnt a mirror issue. but a known bug for the client.
-
Cycling through "Existing User" and "Cancel" non-stop v1.055
this is on the thread of the latest version of osbot.