Leaderboard
Popular Content
Showing content with the highest reputation on 03/23/18 in Posts
-
Horde Anglerfish by @Deceiver Waffs RuneBuyer by @Waffe dPuro Puro by @d0zza H0rn's Cannonballer by @H0rn Chikan's Motherlode Mine by @Chikan Macro Recorder by @liverare Blue's Wine Maker by @ThatGamerBlue slCannon by @Slut17 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.5 points
-
Interesting, you say you're away from home but using the same IP you have for months. @Karyza has been banned for scamming, if he wishes to return he'll need to refund the cost of the account + the cost of the services that were scammed.4 points
-
https://osbot.org/mvc/sdn2/scripts/22 The user was banned for public threats of releasing private conversation + continuously blaming osbot on his script breaking. The script is 100% safe and may not work 100%, but feel free to try.3 points
-
Just running over the code, there are lots of things that could be improved, but for the most part it is a good effort! Instead of critiquing each and every thing, i'll give some general pointers for things to consider in future scripts that you write: Think about conditions OSRS is a live game, and as a result you cannot rely on the bot to successfully execute every interaction command. You have to take this into account when writing your script by making it conditional. If you have multiple chained interactions, for example (arbitrarily), if you wanted to use a raw fish on a fire: getInventory().interact("Raw salmon", "Use"); getObjects().closest("Fire").interact("Use"); Consider what happens if the script misclicks the raw salmon. Then, the script would move on to the next line of code, and attempt to interact 'use' on the fire. However, since an item is not selected, the fire doesn't have a use option, and thus the script is stuck (potentially permanently) hovering over the fire. A better way to structure this would be as follows: if (getInventory().isItemSelected()) { // Optionally add a check for which item is selected here also RS2Object fire = getObjects().closest("Fire"); if (fire != null) fire.interact("Use"); } else { getInventory().interact("Raw salmon", "Use"); } With regards to your code, this especially applies with banking! Use names, not ids Game ids are subject to change following game updates, albeit less so with item ids. Instead, filter things with names. Names are much less likely to change, and using them can make your code significantly more readable! As a general rule of thumb, if you're using an id at any point in your code, there's probably a neater way to solve the problem. Conditional sleeps! Sleeping for a static amount of time, i.e sleep(random(200,500)); // OR sleep(4000); // ... etc is very bad practice. Latency fluctuations, resource allocation and other factors can cause these seemingly stable sleep duration to fall out of sync with what you want to achieve. Instead, use conditional sleeps which will sleep until a threshold is met, or a condition evaluates to true. For example: RS2Object tree = getObjects().closest("Tree"); if (tree != null && tree.interact("Chop down")) { boolean didIStartCutting = new ConditionalSleep(3000) { @Override public boolean condition() { return myPlayer().isAnimating(); } }).sleep(); } This will sleep for 3000ms, or until your player is animating. Avoid flags where possible Flagging is a means of tracking your script status by updating the value of a global variable at a certain stage. While it may work well, it is generally considered poor practice to over use this technique as there are typically better ways structure code to avoid this situation. While you are a beginner, this is not the most serious of problems, but as you learn more about object orientation and programming concepts, you should try and use your knowledge of code structure to avoid this situation. This will make larger projects more digestible and will make debugging a lot easier! ________________________________________________________________________ Hopefully that was useful, let me know if you have any further questions. Good luck! Best Apa2 points
-
2 points
-
2 points
-
is it only me or they forgot to ban sucide accounts? botting 5 days straight for 16 hours a day and no ban..got 61 magic by just picking wines. http://prntscr.com/ivflo21 point
-
@Dard I'm sorry but you said it yourself, the price of 550m was including supplies. So please continue the service, @Kim was never supposed to pay extra for supplies.1 point
-
1 point
-
This might be helpful: https://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/1 point
-
1 point
-
1 point
-
13hours i can see. Now this is proggy i say and yeah to bad update ruined the log.1 point
-
1 point
-
Thank you! I will look into this today. Note to thread onlookers: This is how all bug reports should be. If you're experiencing an issue and want to report it, take this as an example.1 point
-
1 point
-
Thanks for this. I'll look into it EDIT: Are you on mirror mode? I'm using injection and it is working perfectly. The update must have broken mirror mode.1 point
-
Oops I meant Rimmington! lol So I just start the script with my gold, noted planks, (nails if needed) and the rest just un-noted planks and click normal mode and it should go? Ah so it's normal mode > choose what i want to build > click use Phialis ( I didn't realize that was his name lol sorry about that )1 point
-
1 point
-
1 point
-
This is a common position I constantly find accounts stuck at during the draynor course.1 point
-
1 point
-
Automatically levels you up from 1-99. No need to configure, goes based off of skill level. http://www.mediafire.com/file/cxrff1log2cz9d4/fletchy.jar1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
No real proof of trading between accounts being linked to being banned but also no proof saying the otherwise as well. Use bonds.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
I’d have a bot in front of every single tree and deny the RS community of gaining WC exp1 point