Everything posted by fre024
-
findPath
Can someone tell me what i am doing wrong? LinkedList<Position> path = LocalPathFinder.findPath(new Position(xxxx, xxxx, 0)); error: cannot make a static reference to the non-static method also how do i walk a path? Untill now i used my own method. Is there a pathwalking method in the API, because i cannot find it Ty
-
How to create a walkingevent?
I use an area that is 1 tile. I also tried walking to the specified position with the same result, 2 tiles away from endposition. Default setMinDistanceTreshold is set to 2 for every walking procedure right? I want to set this to 0.
-
How to create a walkingevent?
and how do i make it walk to that exact position? it always stops 2 tiles from the position it needs to be can i use:
-
How to create a walkingevent?
code posted in original post
-
How to create a walkingevent?
Hello all, i am trying to change the setMinDistanceThreshold but it keeps giving me errors, no matter what i try STATUS: SOLVED i use another method more accurate to the last tile. Event.WalkingEvent(AREA.getRandomPosition(0)).setMinDistanceTreshold(0); map.walk(AREA);
- Update OSRS #46
-
Had to stop botting for a while...
Anually xd teh joke
-
OSBot 2.1.2 - Banking fix, randoms, etc.
I have the same issue with this client version.
-
OSBot 2 pathwalking / Event implementation question
have you read this tutorial? http://osbot.org/forum/topic/48602-osbot2-event-node-driven-script-skeleto/
-
Best Way To Optimize Your Scripts!
i run my scripts with 500 ms wait in the onLoop
-
OSBot BETA 2.1.1 - Proxy Support, CPU Enhancements, and More!
very nice upgrade, looking forward to make scripts for this client.
-
OSBot 2.0.16 BETA! (First PUBLIC release)
Cannot login to client again. They changed it back so only developers can use the client of osbot2?
-
Enable/disable random solvers on the fly?
bump, still not possibe to do this?
-
How much do you make Per hour atm? [free scripts]
do u bot merching?
-
How much do you make Per hour atm? [free scripts]
200 k/hr per account killing lava dragons
-
Buying 4 bonds
Buying 4 bonds, pm me your skype. 1.3M ea.
- Gf me?
- Let's fight scammers!
-
Making new stake acc need help
for staking u need def
- Top 3 PKers?
- [200+FB] Minus is More Bond shop || 1.3M/3$ ͤ ͣ || FAST || CHEAP || 100+ VOUCHES || Almost 24/7 || New Seller "Minus Danny'' ||
- Toph NMZ | Best Combat XP In the Game!
- GIVING AWAY 20m 07
-
NENKIDO's questing tutorial island and defender services!
Hey, i would like to discuss business with u. Add me on skype "Fre024"
-
[Snippet] My Interaction Function
Would this not be better, because it won't give false positives? private boolean interactWith(String Name, String Interacion) throws InterruptedException{ RS2Object Next = null; Next = closestObjectForName(Name); if(Next != null){ return Next.interact(Interacion); } return false; }