Everything posted by PolishCivil
-
Simple Osbot 2 Script Skeleton
About 2 and 3 point. Actually java JVM is very optimized for huge amount of short lived objects, for such small ones this is psh, no matter. You can make tests if you dont belive. Thing changes if you code in c++/c
-
:facep:
And unban me from chatbox! ;3 //inb4 don't spam polish
-
drawing and saving on image?
v2? Sth like @Override public void onExit() throws InterruptedException { System.out.println("Exit"); try { takeScreenshoot(); } catch (IOException e) { e.printStackTrace(); } super.onExit(); } private void takeScreenshoot() throws IOException { BufferedImage screenshoot = new BufferedImage(this.bot.getCanvas().getWidth(), this.getBot().getCanvas().getHeight(), BufferedImage.TYPE_INT_ARGB); Graphics2D graphics2D = screenshoot.createGraphics(); final BufferedImage gameBuffer = this.bot.getCanvas().gameBuffer; graphics2D.drawImage(gameBuffer, 0, 0, null); this.onPaint(graphics2D); ImageIO.write(screenshoot, "png", new File("screenshot" + new Date(System.currentTimeMillis()).toString().replace(':', '-') + ".png")); }
-
AIOFighter development, JAVAFX, WEBWalking, etc
I have similar thing somewhere ;3 Anywaysi will add loot support later. Th3 made it!
-
AIOFighter development, JAVAFX, WEBWalking, etc
Victim prediction system <lol>
-
AIOFighter development, JAVAFX, WEBWalking, etc
Fine, i will upload simple setup video today. http://osbot.org/forum/user/4539-th3/ Amazing beta paint
-
walkMiniMap OSBOT 2?
Cuz i love ellipses.
-
[How & Why] Mouse Algorithm Alternative! [Make your scripts less detectable!]
IMHO,mouse movements are not cause of bans. The cause o ban are hot spots where you click. If you ban 100 bots you and you have recorded their mouse hot spots, you can easily ban another 100 comparing them. The thing is to make mouse not herping derping around one point.
- Anyone remember this?
-
Oh Internet
ok. You made my day.
-
Dex = Graphics god
- [How & Why] Mouse Algorithm Alternative! [Make your scripts less detectable!]
Nice! You guys can also take a look at: http://www.isot.ece.uvic.ca/publications/behavioral-biometricsx/IJPRAI2203_P461.pdf http://en.wikipedia.org/wiki/Fitts%27s_law#Derivation http://cherokeeengine.svn.sourceforge.net/viewvc/cherokeeengine/src/com/cherokee/event/mouse/- Dex = Graphics god
I wouldn't take any money to make banner for SuperSyfFactory- OsBot and RS07 new "Bot detection system"
Jagex cannot detect if you are using osbot or even deob. (at this point) They can always add class checking and better security (idk why they dont do it but w/e) I'm doing everything that should cause ban. Like filling minimap with green color Or placing troll face on it I never been banned cuz of such things. The only bans i had were about gold farming and skilling hard (top 100 thieving)- OSBot 2.1.10
- walkMiniMap OSBOT 2?
1 tile is 4x4 pixels The green rect is where we usually click on map, except red run button cuz it will turn on run instead walk. Your player is always on center of this minimap, so my green thing is 150x154 (~38x~39 in tiles). So your max clickable distance on this map from player is 38/2 = 19 in tiles width and 19,5 in tiles height. So if you want to click on minimap your distance to dest cant be more than ~19 (safest one is 14 cuz it excludes run button). The other way is to make ellipse around minimap: So the code will looks like: And then you loop positions while they are on map or otherwise if you are looping starting from fahrest ones.- OSBot 2.1.10
Then you need to buy me new cpu- Intellij is rude
- OSBot 2.1.10
.10 stuck at injecting equipment things. .9 works fine.- Regarding the latest Java Update & Functionality with OSbot
Or http://osbot.org/forum/topic/51931-update-to-work-with-java-8/- OSBot 2.1.10
People say thats my issue ;/- I made this.
- OSBot 2.1.10
Im not trying to be rude but: I really liked the 2.1.3 release because my cpu use was crazy low also not much npe, monitor bugs, Can you explain me why you keep releasing kinda fucked up things? I mean its damn good you fix things like equipment but I'd rather have stable bot than equipment info. Can you guys focus more on osbot stability than api features? I know i;ve been fucking around api but atm stable bot is most important thing for devs. Stack obfuscaion much. Java, sweet java... Fixed with 8. "C:\Program Files\Java\jdk1.7.0_60\bin\java" -Didea.launcher.port=7535 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA 13.1.3\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.7.0_60\lib\ant-javafx.jar;C:\Program Files\Java\jdk1.7.0_60\lib\dt.jar;C:\Program Files\Java\jdk1.7.0_60\lib\javafx-doclet.jar;C:\Program Files\Java\jdk1.7.0_60\lib\javafx-mx.jar;C:\Program Files\Java\jdk1.7.0_60\lib\jconsole.jar;C:\Program Files\Java\jdk1.7.0_60\lib\sa-jdi.jar;C:\Program Files\Java\jdk1.7.0_60\lib\tools.jar;C:\Users\Robert\OSBot\Scripts;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 13.1.3\lib\junit-4.11.jar;C:\Users\Robert\OSBot\jar\OSBot-packed-2.1.10.jar;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 13.1.3\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain Boot No proxy authentication! =============== DEBUG MESSAGE: illegal bytecode sequence - method not verified ================ # # A fatal error has been detected by the Java Runtime Environment: # # Internal Error (os_windows_x86.cpp:143), pid=8940, tid=6520 # guarantee(result == EXCEPTION_CONTINUE_EXECUTION) failed: Unexpected result from topLevelExceptionFilter # # JRE version: Java(TM) SE Runtime Environment (7.0_60-b19) (build 1.7.0_60-b19) # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.60-b09 mixed mode windows-amd64 compressed oops) # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # C:\Users\Robert\Dropbox\Projects\OSBotScripting2\hs_err_pid8940.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # Process finished with exit code 1- boobs 101
http://osbot.org/forum/topic/51861-html-making-life-better/?p=579788 Someone is horny here- html making life better
<b></b> - [How & Why] Mouse Algorithm Alternative! [Make your scripts less detectable!]