Everything posted by Soldtodie
-
Obfuscating your local scripts
It's not necessary because everything you can add is not necessary to save.
-
Something i made in 1-2 hours, tell me if you like it
No, I mean the path of the calc.exe. For example: Open the internet explorer. Path should be like this: "C:\Program Files (x86)\Internet Explorer\iexplore.exe"
-
Something i made in 1-2 hours, tell me if you like it
Only for system32 apps?
-
Something i made in 1-2 hours, tell me if you like it
Does it work with spaces in the path?
-
any good hardstyle/EDM songs you guys reccomend?
https://m.youtube.com/watch?v=gTWHSbMdoTU and zatox
-
Mining rocks with ore [No IDs]
I am not saying that your solution is bad, but with saving position you can add next spawning rock and then you must update all rocks every few seconds/ms and then the time could be noticeable.
-
Mining rocks with ore [No IDs]
0-1ms is better
-
Mining rocks with ore [No IDs]
That the user select the rocks. No you haven't.
-
Mining rocks with ore [No IDs]
A method for checking if the rock is mined. public boolean isMined(RS2Object rock) { if(rock != null) { /* Doesn't exist anymore. if(rock.getName().equals("Pile of Rock")) { return rock.getHeight() <= 24; } */ short[] col = rock.getDefinition().getModifiedModelColors(); if(col == null) { return true; } else if(col.length == 1) { return col[0] == 6040; // Ok, you need one predefined color id because of the three different rock styles. } else { return col[0] == col[1]; } } return true; } I prefer to select and save the rock positions. It's faster because you don't have to check every rock in your neighborhood.
-
Mining rocks with ore [No IDs]
It takes long from the first use of this method in april 2014 to the first snippet . Anyone interested?
-
Mining rocks with ore [No IDs]
This takes long. If you don't need the names you can make a method without predefined id's.
-
SDN resources load fail
I found the problem to list the files is not possible idk why but directly call the files works.
-
SDN resources load fail
and what should i do now?
-
SDN resources load fail
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(SMiner.class.getResourceAsStream("/resources/"))); String line = bufferedReader.readLine(); listModel = new DefaultListModel(); while(line != null){ listModel.addElement(line.substring(0, line.length() - 4)); line = bufferedReader.readLine(); } list.setModel(listModel); This should show me all resources. It works local but not on the sdn. Why?
- Perfect Fisher AIO
-
how many bot tabs can free users use?
2 Tabs!
- Script error
-
Script error
[ERROR][11/21 08:53:05 PM]: Uncaught exception! java.lang.IllegalArgumentException: Cannot change state of non-idle timeline [Model transitions:org.pushingpixels.substance.internal.animation.StateTransitionTracker READY:0.0] at org.pushingpixels.trident.Timeline.addCallback(Timeline.java:333) at org.pushingpixels.substance.internal.animation.StateTransitionTracker.onModelStateChanged(StateTransitionTracker.java:480) at org.pushingpixels.substance.internal.utils.RolloverButtonListener.mouseClicked(RolloverButtonListener.java:211) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEventImpl(Unknown Source) at java.awt.EventQueue.access$500(Unknown Source) at java.awt.EventQueue$3.run(Unknown Source) at java.awt.EventQueue$3.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source) at java.awt.EventQueue$4.run(Unknown Source) at java.awt.EventQueue$4.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) What's that?
-
Rate my new script logos lads
The logo's for Chop and Fish are really nice but I don't like the color's in the Magic logo. 9/10 | 9/10 | 7/10
-
Getting all object in a range
you need java 8
-
Any Ideas?
getSkills().getDynamic(Skill.HITPOINTS) // Works myPlayer().getHealth() // Percentage, doesn't work if you logged in with not 100% life getWidgets().get(160, 4).getMessage() // Works, only if the orbs are activated
-
OSBot with Windows 10
But without java you can't run runescape and you can't run the regular client.
-
OSBot with Windows 10
I don't think so.
-
OSBot with Windows 10
Lol? You need java anyway!?
-
Typing (faster) using the Keyboard class
Use this http://osbot.org/forum/topic/73829-smartkeyboard-better-human-typing/ or write your own with typeKey