Leaderboard
Popular Content
Showing content with the highest reputation on 10/27/17 in Posts
-
2 points
-
I copy paste open source csgo python scripts from mpgh with broken offsets.2 points
-
────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - £3,99 | Chest Thiever - £2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌡ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌡ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.1 point
-
24 hour progress report!! Setup Window Highly intuitive and visual, and easy to use! Portal Prediction knows which portals are going to drop - prioritises them! Full Void in <24 hours It takes only 850 points for full void, go go go! Screenshots & Results1 point
-
AIO Yew Chopper Price: Free for VIP+(Add here) Features Setup: Setup Guide: Progress Reports: Bug Report Format: Client version?: What happened?: Where had the problem occured?: What options you choosed?: Screenshot? (If any): Logs(pastebin if possible):1 point
-
Very simple snippet of an animation timer I used in one of my scripts. Useful for things such as fletching, crafting, etc. Things where the animation returns -1 even when it is still doing an action. Define variable long lastAnimation = 0; Usage: if (myPlayer().isAnimating()) { lastAnimation = System.currentTimeMillis(); } else if (System.currentTimeMillis() > (lastAnimation + int)){ //do action } int is the amount of time to sleep before it needs to click again if you haven't animated. For example, if you wanted it to click after 2 seconds of not animating, you would put 2000 there.1 point
-
Mate in my clan was working overseas as a nurse, told me he was doubling his yearly salary via botting. Did not believe. Rest was history - Shoutout to the brother if you see this post, HMU@!1 point
-
i think you can solve this problem by putting the grapes and the jug of water next to each other, instead of underneath each other in the bank. it worked for me1 point
-
super similar start here, it was back in the day after the trade controls had just started. I was botting hardcore mage xp to 99, then attack and eventually even 94 dg. It was crazzzy back then how much you could get away with. never knew about gold farming till recent and building my knowledge since discovering this community. Frosts and all them were some $$$1 point
-
Its fine its my bad sorry dude had wrong code.. had code for in noted.. cheers script is perfect.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
how can you even call this perfect miner its far from perfect it wont even move after stopping it the first time should rename it to failminer noob1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Hey Czar! did this work with the new tick update ?:) awesome scripts man whoops didnt see last post1 point
-
Lost my shit when I saw the bot combine potions and use auto retaliate perfectly. A+ man, props1 point
-
Yes. Basically when you play games you have a chance of a case being dropped to you and to open that case you need to buy a key from Valve themselves (or other players) which cost around $2.3, you can also buy cases from the market from other players they're very cheap usually like 0.03. Then you open them. The odds are however, absolute trash. So basically a 0.25% chance of opening a knife and keep in minds some knives are only worth like 50 bucks so you'd need to be extremely lucky to profit off of opening cases. Fun fact! There's an M4A4 skin called "Howl" which is discontinued due to some copyright bs which means none of those can be pumped into the game. When I started playing the game a few years back they were sitting around 100 bucks, now you'll be lucky to get one for 1000. Kind of like party hats and stuff in RS3 and people get banned with one from time to time so they disappear from the game as well.1 point
-
1 point
-
1 point
-
Nice You're not the first to suggest the duel ring change; but it is how it is because the option interface for the ring gets interrupted by combat and falling rocks1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
This makes use of my CachedWidget class: https://osbot.org/forum/topic/97399-a-better-way-to-handle-widgets-cachedwidget/ And also my WidgetActionFilter class: https://osbot.org/forum/topic/127248-widget-action-filter/ import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.event.Event; public final class DisableAudioEvent extends Event { private static final int musicVolumeConfig = 168; private static final int soundEffectVolumeConfig = 169; private static final int areaSoundEffectVolumeConfig = 872; private final CachedWidget soundSettingsWidget = new CachedWidget(new WidgetActionFilter("Audio")); private final CachedWidget musicVolumeWidget = new CachedWidget(new WidgetActionFilter("Adjust Music Volume")); private final CachedWidget soundEffectVolumeWidget = new CachedWidget(new WidgetActionFilter("Adjust Sound Effect Volume")); private final CachedWidget areaSoundEffectVolumeWidget = new CachedWidget(new WidgetActionFilter("Adjust Area Sound Effect Volume")); @Override public final int execute() throws InterruptedException { if (Tab.SETTINGS.isDisabled(getBot())) { setFailed(); } else if (getTabs().getOpen() != Tab.SETTINGS) { getTabs().open(Tab.SETTINGS); } else if (!musicVolumeWidget.get(getWidgets()).isPresent()) { soundSettingsWidget.get(getWidgets()).ifPresent(widget -> widget.interact()); } else if (!isVolumeDisabled(musicVolumeConfig)) { musicVolumeWidget.get(getWidgets()).ifPresent(widget -> widget.interact()); } else if (!isVolumeDisabled(soundEffectVolumeConfig)) { soundEffectVolumeWidget.get(getWidgets()).ifPresent(widget -> widget.interact()); } else if (!isVolumeDisabled(areaSoundEffectVolumeConfig)) { areaSoundEffectVolumeWidget.get(getWidgets()).ifPresent(widget -> widget.interact()); } else { setFinished(); } return 200; } private boolean isVolumeDisabled(final int config) { return getConfigs().get(config) == 4; } } Usage: Event disableAudioEvent = new DisableAudioEvent(); execute(disableAudioEvent);1 point
-
Thanks for this guide THOT, I'm following it now. I wrote a custom auto-clicker to pray flick rapid heal with proper random intervals, I may release it later if anyone would find it useful.1 point