-
Posts
505 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by Soldtodie
-
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
Soldtodie replied to The Hero of Time's topic in Software Development
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
Soldtodie replied to The Hero of Time's topic in Software Development
Only for system32 apps? -
Something i made in 1-2 hours, tell me if you like it
Soldtodie replied to The Hero of Time's topic in Software Development
Does it work with spaces in the path? -
any good hardstyle/EDM songs you guys reccomend?
Soldtodie replied to The Hero of Time's topic in Spam/Off Topic
https://m.youtube.com/watch?v=gTWHSbMdoTU and zatox -
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.
-
0-1ms is better
-
That the user select the rocks. No you haven't.
-
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.
-
It takes long from the first use of this method in april 2014 to the first snippet . Anyone interested?
-
This takes long. If you don't need the names you can make a method without predefined id's.
-
I found the problem to list the files is not possible idk why but directly call the files works.
-
and what should i do now?
-
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?
-
2 Tabs!
-
[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?
-
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
-
you need java 8
-
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
-
But without java you can't run runescape and you can't run the regular client.
-
I don't think so.
-
Lol? You need java anyway!?
-
Use this http://osbot.org/forum/topic/73829-smartkeyboard-better-human-typing/ or write your own with typeKey