Everything posted by Rudie
-
OSBot 2.3.43 - Account Management, Settings API, and more
Thank you! Keep up the good work.
-
Is Mirror Client slow for anybody else?
Some scripts are and some aren't here, I defenitly notice every script responds slower than at standard mode.
-
Mouse click broken?
Yeah I thought it would automatically count up but it didn't I logged it to the console to see and it just pasted it right after, I'll go report it in a few minutes.
-
Mouse click broken?
Don't worry, I will , thanks for helping out!
-
Mouse click broken?
Just thought about it and yes I could have done that and might change it in the script to clean it up. But please keep in mind that I'm a learning Java developer and was just doing everything I could to get it to work. Thanks for pointing out that that is a stupid way to do it, that way I keep learning and keep getting better at programming in Java I have tried doing it by doing myPosition.getX() + 1 but it would add the number right after the coord so like if the coord was 3444 it would change to 34441, I remembered this was a problem once in my class at javascript where we had to do something similiar to this and the teacher told us about parseInt, I looked it up if there was something like that in Java and eventually did it that way.
-
Mouse click broken?
I know it is a horrible way of doing it but I couldn't get it to work any other way, but it worked so I didn't care to change it.
-
R.I.P in pepperino
And why would I believe you?
-
R.I.P in pepperino
On the thread one of the developers made it said that that was the concept.
-
R.I.P in pepperino
Yes, that way Jagex can't detect you are running on a modified client, the only way they could find out is by looking at your actions.
-
PickBury - Pick up bones and bury them at any location
That was from a random event I completed before taking the screenshot :P and it sometimes accidentally picks up items but those that get dropped at Minotaurs aren't really that great tho. Could add this feature if enough people would want it though.
-
Mouse click broken?
Got it, this is working for me right now: RS2Object fire = objects.closest("Fire"); if(fire.getY() == myPlayer().getY() && fire.getX() == myPlayer().getX()) { int a = Integer.parseInt(""+myPlayer().getY()+""); int b = Integer.parseInt(""+a+"") + 1 ; int c = Integer.parseInt(""+myPlayer().getX()+""); int d = Integer.parseInt(""+c+"") + 1 ; Position path = new Position(d, b, 0); path.interact(bot, "Walk here"); log("ot works"); sleep(random(150, 250)); } Thanks for everyone who tried to help!
-
Mouse click broken?
I know what the problem is, it can't move just 1 tile it has to be more than a certain amount. If I changed it to +5 tiles it would work. Now, is there a way that it can move just 1 tile? Thanks.
-
Mouse click broken?
I get this error: The method interact(Bot, String...) in the type Position is not applicable for the arguments (String) Still need this, localwalker wont walk for me to that specific tile..
-
Mouse click broken?
It just doesn't want to walk it just tries to light another log.
-
Mouse click broken?
In my firemaking script I'm working on I want that if it accidentally wants to light fires at a tile where already is a fire to move a coord. This is what I've tried: RS2Object fire = objects.closest("Fire"); if(fire.getY() == myPlayer().getY()) { mouse.click(myPlayer().getX(), myPlayer().getY() + 1, true); log("help"); } (Placed the log "help" there to debug and yes it does spam help in the console.) This doesn't work, I've also tried with the MessageListener like this: if (txt.contains("light a fire here")) { mouse.click(myPlayer().getX(), myPlayer().getY() + 1, true); sleep(random(150, 250)); } But none of it works, so I'm wondering is it broken in the API or is there another better way to do this? Cause I really need it. Thanks, Rudie.
-
PickBury - Pick up bones and bury them at any location
Thanks!
-
PickBury - Pick up bones and bury them at any location
Updated to V1.1 see changelog for details.
-
PickBury - Pick up bones and bury them at any location
No problem!
-
PickBury - Pick up bones and bury them at any location
Thank you (: OT: 1 hour proggy added.
-
PickBury - Pick up bones and bury them at any location
Thank you
-
PickBury - Pick up bones and bury them at any location
Thanks, haven't been making scripts for a long ass time, it was fun to make this .
-
PickBury - Pick up bones and bury them at any location
By: Rudie About Hello and welcome to my first script for OSBot, this scripts basically picks up normal bones and buries them instantly for prayer exp. It should work at any location where a lot of bones spawn, haven't tested at other locations than level 1 Stronghold of Security @ Minotaurs but it should work fine anywhere else. Features Picks up bones and buries them anywhere Simple Antiban Simple, yet informative paint Fast and easy to use How does it work Here's an image so you can see how it performs: Download Precompiled .jar file available for download here: Download Proggy's 1 Hour: Changelog V1.1 New paint and performance enhancement V1.0 Official Release Credits Rudie Thank you, if you have found a bug please report them and I'll ty to fix them.