Everything posted by FrostBug
-
What are some random things that bother you?
Im at work at the moment, so I'm gonna go with.. People who call or mail me, asking whether they can hit yes on whatever warning/popup they might get on their PCs. Be it from Adobe, Java or whatever *Thats what grinds my gears
-
Looking for a new anime to watch
Btooom! Tokyo ravens Accel World Angel Beats! Chrome Shelled Regios Mirai Nikki Guilty Crown Hagure Yuusha Kaze no Stigma T.T. Gurren Lagann Kore wa Zombie desu ka? Eureka Seven C: The the Money of Soul and Possibility Control Densetsu no Yuusha no Densetsu Get to it
-
BetterBarrows progress
"Next room is Chest room because it is the chest room" Can't argue with this Good luck with the project! Maybe we'll be competing eventually :p
-
Back to windows 7 :(
ftfy
-
Road to 100 Easy Clues
GOML When you bug them like this, each of them are completed at the first location Good luck with your goal, though
-
Compiling .Java Files to .Jar Files?
Your system doesn't have your JDK properly registered. You can fix it by appending the path to your 'Path' environment variable for your system this can be done with the command: example (don't use this path, use your own): this should allow your system to recognize the javac command
-
Compiling .Java Files to .Jar Files?
Install JDK
-
Problem hiding/showing paint.
Did you remember to register your mouselistener? eg. bot.addMouseListener(yourListener);
-
Getting bot username?
Seeing as bot.getUsername() has been deprecated, does anyone know of a replacement? Im fairly certain that while bot.getUsername() returned the username of the osb account logged into the client, the client.accessor.getUsername() returns the username of an osrs account profile, which is not what I need. Thanks
-
How Long Will It Before all the scripts work
Thread of the year right here
-
What the min and max?
In my experrience, the mouse algorithm often messes up at speeds over default when dealing with moving the cursor to moving entities. Circles the entity unnaturally several times
-
OSBot 1.8.1-6
Isn't the issue merely that the multiplier used in relation to lowestAvailableCameraPitchAngle is incorrect?
-
Move mouse to object
Well, you may as well skip a step and use: MouseDestination dest = object.getMouseDestination(); sA.client.moveMouse(dest, true);
-
What is "For"?
There are 2 types of for loops; The 'standard' for loop which loops through a code block while a condition is true, executing some logic after every loop as well (usually incrementation). example: for(int i = 0; i < 10; i++) { //Code block } this would execute the code block until the variable i is no longer less than 10; And will increment i by one after each execution of the code block. This type of for loop is commonly used for iterating through arrays of primitive types, grabbing elements by index. another variation of the for loop (often referred to as a for-each loop) is used to pull elements out of a collection. This type of for-loop will only work with collections that implement the Iterable interface, and is essentially a limited iteration by the collections iterator. for(Object element : collection) { //Do something with the elementa }
-
Scripting question
item#getName should return the correct name string as it is now. That is with the exception of noted items; For which it will return "null"; It's a known issue
-
Ban evader
Past accounts (if you know of any): [member=Peekay] Current account: @peekaytime Reasoning: Same person. He is continously trying to scam people by selling a (by now broken) test version jar-file of the script Frost Impulses
- v1.7.90-.97
-
v1.7.90-.97
.93 doesn't recognize MessageType.GAME; But rather has .GAME0, .GAME1, .GAME99 and a few other odd ones Kinda breaks certain scripts
-
Painting in onStart
Bot class has a public getter for BotCanvas, which you can repaint or grab Graphics from; However, the getter is reobfuscated with every release I suppose you could grab it between compilations using reflection; Try something like this.. Field[] fields = bot.getClass().getDeclaredFields(); BotCanvas canvas = null; for (Field field : fields) { if (field.getType().isAssignableFrom(BotCanvas.class)) { try { field.setAccessible(true); canvas = (BotCanvas) field.get(bot); } catch (IllegalArgumentException | IllegalAccessException ex) { //Exception handling } } } if(canvas != null) { Graphics g = canvas.getGraphics(); //Grab graphics context canvas.repaint(); //Repaint }
-
OSBot BETA v1.7.89
in .88 some infinite loops were given timeouts in the moveMouse method Probably other changes too, though
-
wtf? no clue scroll drop anymore?
Feels good to be lucky Went and stole 3 clues from H.A.M's
-
Tell me your best joke
tfw you didnt just quote his post to see that all the bb tags were empty
-
OMFG ALEK!
What an insightful question ( ͡° ͜ʖ ͡°)
-
Unauthorized sale of my script
Disputed member: @Peekay (Former name: Account1994) Thread Link: - Explanation: Ive been made aware of the fact that he was trying to sell a test-version (local jar) of the script that I had provided him for testing. He made an attempt to sell the script for 10M 07gp to the member @qw3, who in turn notified me of this. Evidence:
-
Knowledge required to create a botting client?
ASM or reflection I reckon (As people have mentioned) I made a client once (For simple paint rendering of loaded NPCs & objects) in ASM; Learned a lot of bytecode from that; So I would definitely recommend giving it a try; Simple stuff anyway. Making a full blown botting client alone is.. not a good idea IMO