Everything posted by Botre
-
Singleton JFrame not appearing on script start
package org.bjornkrols.design_patterns.lazy_singleton; /** * @author Bjorn Krols (Botre) * @version 0.0 * @since March 6, 2015 */ public final class LazySingleton { // Instance is not created until getInstance() is called. private static volatile LazySingleton instance = null; private LazySingleton() { // Do not delete or make accessible. // Exists only to prevent creating multiple instances. } public static LazySingleton getInstance() { if (instance == null) { synchronized (LazySingleton.class) { // Double check, synchronized block. if (instance == null) { instance = new LazySingleton(); } } } return instance; } }
-
Singleton JFrame not appearing on script start
^ (might want to show us how you're instantiating the singleton)
-
Imgur Link Generator
http://i.imgur.com/Lv6xBsY.png
-
i thought of something...
You make food in pots, you don't make food out of pots. ...
- Scripting Help
-
Scripting Help
if(myPlayer().isAnimating() { } else { }
-
Hide Tanner.
1. Buy a premium tanner. 2. Bot for 10-20 hours. 3. Sell your profits. 4. You know have your free script.
-
Me and my Armadyl Godsword
What the shit. I'm 100% sure that girl reks every single OSBot user.
-
Joining the 2K team! <3
- MirrorClient v1.053
Probably the script logic not accounting for the mirror's slow collection filling, post on the script's thread.- ..::Script Requests Index::..
Put a limit on the amount of items you can make / session. Just kidding don't do that, it'll probably count as duration limitation :p Just Regular-Willows ? something like that ? (I'm also planning on releasing a free fletcher and that's probably what I'm going to do considering anything above that are premium-worthy imo)- Better Conditional Sleep
I like how you used breakCondition() instead of condition() (the API version of that method), makes more sense IMO. Gj- ..::Script Requests Index::..
Grabbed from a thread in the script developer section made 2 days ago. Not all rules related to scripting and the script market are in the thread you posted (sadly enough).- who is the new guy
- Free Good Fletching script
- Rofl Mod Reach knew he was caught
lol dat face tho- 100 years later...
You actually expected them to drop the whole continent in one update ?- ..::Script Requests Index::..
I don't think you are allowed to have time-constrained trial scripts (only feature-constrained). Even if you were allowed to have time-constrained trials I'd suggest reducing the time to less than one hour or else you're just going to shoot yourself in the foot concerning sales of the non-trial version + your script might not get accepted considering it might be considered as a free version of an AIO counterpart, which isn't allowed.- Crazy teaser
Cubase has a steeper learning curve imo though.- Crazy teaser
- Crazy teaser
Yesssss. Future-ish/Trap-ish/Grime-ish- Crazy teaser
https://soundcloud.com/dreamstreamofficial/like-it-teaser/s-6XSCe Studios are fun- Eclipse
You really gonna want to learn to use google. Or at least be more detailed about your issue when asking for help- Eclipse
https://www.google.be/search?q=eclipse+workspace+not+showing+up- Eclipse
http://pages.cs.wisc.edu/~cs302/labs/EclipseTutorial/Step_02.html - MirrorClient v1.053