Everything posted by Th3
-
Reflection vs Injection
Reflection is is much harder to detect but uses more resources and is slower. Injection is easier to detect but faster. But if you do it right it becomes hard to detect.
-
OSBot 1.8.13 and 2.1.9
Unable to run any scripts on osbot 2: scripts don't even use equipment api [ERROR][05/30 12:52:16 PM]: Failed to start script [scriptname] java.lang.NullPointerException at org.osbot.rs07.api.Equipment.reset(bk:22) at org.osbot.rs07.event.ScriptExecutor.start(be:198) at org.osbot.LPt4.run(ui:73) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source)
-
Who has an annoying IRL friend like this?
You talk to your guy friends with snapchat? How homo.
-
Some dude is recovering my account, I'm suing him. (For real)
By illegal I mean it break's jagex's TOS. He might be able to sue for time spent on the account but not for the account itself or it's "value".
-
Some dude is recovering my account, I'm suing him. (For real)
No since the act of selling was illegal in the first place according to jagex rules. At least in the States it's like that.
-
Osbot Users As Chicks
Since the api is unstable out of boredom I went ahead and photoshoped some users as chicks. I think nezz looks best.
- Mini Vacation
-
Guys: Would you tap this?
found her parents.
-
Roomscape should be mod
He is too smart
- My Resignation.
-
Quick Equipment Class for newest update
There must be some way to force load the items. Otherwise they'll do this shit to inventory too.
-
Show me your workstate.
I like your helicopter. The "Head First Java" book tho.
-
Show me your workstate.
Ghetto programming. There is a mouse somewhere too.
-
Epic Script Factory - Create ANY Script With No Limitations!
IntelliJ for coding, eclipse for GUI.
-
The one thing I hate..
Just a pro tip. Try not get used to using ID's.
-
OSBot 2.1.6 - Improved interactions
Mouse fix worked. Do we have to unregisterBehavior every anti-ban type one by one? There is no option to stop it all at once?
-
OSBot 2.1.4-5 - Integrated anti-ban, optimized interactions, minor API changes
red = unreachable so canreach is not fixed mouse is very slow/crazy
-
OSBot 2.1.4-5 - Integrated anti-ban, optimized interactions, minor API changes
Has canreach and BFSWalkableAreaFinder errors been fixed?
-
recommend me good movies
He likes this kind of stuff
-
OSBot 1.8.8 and 2.1.3
canreach returns false if you are standing on the postion. canreach entity returns false if you are standing within a tile of it. so if you are infront of the npc its not reachable.
- Osbot merchh stuff
-
How to create a walkingevent?
Until you run into this. http://osbot.org/forum/topic/50183-osbot-188-and-213/?p=563210 Which happens in quiet a few regions and tiles that are diagonal, slanted or on a hill.
-
With what intentions do you enter the forums?
I come here to get laid.
-
How to create a walkingevent?
you can also write your own, I found local walker to be too buggy. public boolean walkMinimap(Position p) { MouseDestination mouseDestination = new MiniMapTileDestination(bot,p); if (mouseDestination != null) { return mouse.click(mouseDestination); } return false; } usage: if (walkMinimap(new Position(3022,3022,0) { //blah }
-
How to create a walkingevent?
localWalker.walk(new Position(1,1,1)); You mean this?