Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/07/17 in all areas

  1. Patched an issue with out of memory exceptions on some machines. Also touched various other things which shouldn't matter too much. Download: https://osbot.org/devbuilds/osbot 2.4.117.jar
    13 points
  2. This post is mostly intented for scripters I suppose. So anways I just started scripting again after a long break, and thought of the following while making my script: If Jagex can monitor mouse movements, what would be the easiest way to detect bots? For instance take magic; high alching. Thinking about making a script like that I'm sure I would have used sleep(random(min, max)) between mouse clicks until now. Let's take sleep(random(500, 700)) and see what Jagex would see if they're monitoring the time between the clicks for let's say 10k alchs, by using this snippet: int[] numbers = new int[750]; for (int i = 0; i < 10000; i++) { numbers[MethodProvider.random(500, 700) - 1]++; } int i = 0; for (int n : numbers) { if (i++ < 450) { continue; } System.out.println("" + i + ", " + n + ""); } Entering the output in a scatter plot produces the following data visualisation: I'm sure that you would realize that no human could ever hit so perfectly random between 500 and 700, but never go below or past those respectively. So I started digging into this and found out there is a common method which is used for this sort of thing, called standard deviation. It turns out that OSBot already has this in their API at MethodProvider#gRandom, so you can already use this. I had already made my own snippet for it though: public static void main(String[] args) { int[] numbers = new int[750]; for (int i = 0; i < 10000; i++) { numbers[rand(500, 700) - 1]++; } int i = 0; for (int n : numbers) { if (i++ < 450) { continue; } System.out.println("" + i + ", " + n + ""); } } public static int rand(int min, int max) { return rand(min, max, (max - min) / 8); } public static int rand(int min, int max, int deviation) { Random r = new Random(); int avg = min + ((max - min) / 2); int rand; do { double val = r.nextGaussian() * deviation + avg; rand = (int) Math.round(val); } while (rand < min || rand > max); return rand; } Now, running the output data through the same scatter plot produces the following image: Which doesn't drop off to zero without ever hitting one past it. It is important to note that when using this, you might want to make your intervals wider...it is kinda unlikely that you'd be as accurate as the above plot. For example 300, 900 produces this, which is what I think would be a lot more human like: Anyways, you do not always need to use this but I strongly recommend it for scripts that use repetitive clicking and such, because it seems very easy to detect botters from Jagex's side if you use regular sleeps in some cases. Thought I'd share since I had never seen sleep used with such a random distribution before and it may prevent some bans Goodluck & hf :p
    6 points
  3. CzarScripts #1 Bots LATEST BOTS If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    5 points
  4. if (shouldIDrinkPotion()) { drinkPotion(); } final WebWalkEvent webWalkEvent = new WebWalkEvent(destination); webWalkEvent.setBreakCondition(new Condition() { @Override public boolean evaluate() { return shouldIDrinkPotion(); } }); execute(webWalkEvent);
    5 points
  5. Unless the full video unedited is shown I don't see how we can prove it either way. I'm not gonna ban you on here. I would do the same exact thing as you. If I confirmed a trade with someone 5 times and the 6th time I forgot or just assumed we were on the level of trust. I would just go ahead with the trade. Also a site with 10 people on and a bunch of mods with no reputation. Not going to fly around here.
    4 points
  6. your shutdown button in the task bar is triggering me.
    4 points
  7. Only idiots would pay more for a hand done account. Hand done or botted, same shit at the end after a week of not botting
    4 points
  8. gz you discovered what most bots have had implemented since 2010
    3 points
  9. 100% organic hand done kosher non-gmo fresh USA HAND CRAFTED botted accounts
    3 points
  10. There's not really any evidence that suggests that @Eendtraded over the money to someone else nor is there any evidence from @Eend that suggests otherwise, so it's basically word against word which means I'm going to have to archive this dispute.
    2 points
  11. edit did not see those boat shoes that you linked is 99% of your school planning to walk on water? just buy some tommy hilfiger sneakers or hugo boss they are not even that expensive
    2 points
  12. just find out what the xp/hr is and youll roughly know lazy bastard
    2 points
  13. Disregard that, I spoke to the staff and we agreed on allowing you to do this but you must include and let all of your buyers know that you have the potential to recover their account anytime in the future if the ban is lifted/ if the service is successful. This should be made aware to all those who purchase this. Thanks
    2 points
  14. getBank().getSlot("My item"); Is what you're looking for
    2 points
  15. I think he means that while walking, stop to drink the potion and resume You can do this with a break condition for a WebWalkEvent. Set the breakcondition for when you want it to drink
    2 points
  16. I know you're referring to me. I can provide screenshots or proof of the accounts being hand-done leveled. Its the buyers choice to buy or not to buy an account. Never had an user with any problems regarding being banned on an account I sold em, I can't count on two hands the amount of accounts. Let's put your opinion aside and dont buy accounts you seem sketchy, problem solved.
    2 points
  17. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Task/progressive based setup - Supports cleaning all herbs - Supports making all Unf potions - Supports almost every potion (Attack, antipoison, strength, serum 207, restore, energy, defence, agility, combat, prayer, super atk, superantipoison, fishig, super energy, super strength, weapon poison, super restore, super defence, antidote+, antifire, ranging, magic, zamorak brew, antidote++, bastion, battlemage, saradomin brew, ancient brew) - Creation of super combat potions - Upgrade potions (Stamina, Extended antifire, Extended super antifire, compost, antivenom, divine super attack, divine super strength, divine super defence, divine ran ging, divine magic, divine bastion, divine battlemage, divine super combat) - Tar combining - Item crushing (Unicorn horn, chocolate bar, kebbit teeth, birds' nest, desert goat horn, blue dragon scale, lava scale, superior dragon bones) - Amulet of chemistry support Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 598:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify '-script 598'): -script 598:TaskList1.4515breaks (With breaks) -script 598:TaskList1.4515breaks.discord1 (With breaks & discord) -script 598:TaskList1..discord1 (NO breaks & discord)
    1 point
  18. Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui
    1 point
  19. Stealth Builder Can also be purchased with OSRS gold using vouchers from here Features Automatically buys house if you don't have one Buys all required items from GE Restocks from GE when out of supplies Automatically switches items for best XP rates Builds all required rooms Hires and changes servants as it gains levels Builds beds and bell-pull for servants XP rates similar to human players Uses keyboard to select dialogue/construction interface options Instructions Set the desired level on the GUI and select one of the 2 modes available. The only difference between them is the fast mode will switch to Mahogany tables at 52, which is faster but more expensive. The script is designed to automate all tasks from fresh level 3 accounts, so it's recommended that you don't have a complex house layout with multiple floors. It's best to start the script at Grand Exchange, or in house if you already have the required supplies. Make sure you have enough money on the account for supplies. The script fetches supplies from the bank, does not use money pouch, therefore if manually setting up the bot inside the house, you should have a regular Saw (not crystal), regular Hammer, Coins and Teleport to house tabs CLI Features Script ID is 924. The script supports CLI startup with the following syntax: -script 924:parameter=value where at least the mode and target_level parameters must be specificed eg. -script 924:mode=normal;target_level=99;on_limit_break=true;take_breaks=true;min_break_frequency=50;max_break_frequency=100;min_break=20;max_break=150; List of parameters: mode=[true|false] target_level=[number] on_limit_stop=[true|false] on_limit_break=[true|false] take_breaks=[true|false] min_break=[number] max_break=[number] min_break_frequency=[number] max_break_frequency=[number] afk_sessions=[true|false] min_afk_frequency=[number] max_afk_frequency=[number] min_afk_duration=[number] max_afk_duration=[number] hop_worlds=[true|false] min_hop_frequency=[number] max_hop_frequency=[number] Bug Report Template 1. Stealth Injection or Mirror Mode: 2. Logger contents (press "Settings" on top right corner of the client, then "Toggle Logger", copy & paste on pastebin) : 3. Description:
    1 point
  20. Do you want to bot something that Instantly sells? Do you want to be able to gain magic Experience at the same time? Do you want to be able to make over 350k+ GP an hour? Are you looking for OSBots most featured and popular Orber? Shudsy's Orber is what you're looking for. Features Smart Walking system. Emergeny Teleport incase of PKers or low hp. Ability to use House tabs instead of glories if selected. Ability to use Clan wars to bank and restore HP/Energy. Clean paint which also lets you hide if wanted. Full item support with everything needed. World hops if attacked by PKer. Death walking/Death Teleporting World hopping to avoid PKers. Stamina Potion support. Requirements 66+ Magic is required. 40+ HP is recommended. Information If NOT using Castle wars to bank, have food in bank. If enabled, have Stamina Potions in bank. Have Unpowered orbs and cosmic runes in bank. Have several glories, ring of dueling or House tabs in bank. Click here to buy! Proggies 18 Hour proggy Dynamic Signature
    1 point
  21. I cant make u laugh, but if u want to cry just look at the mirror
    1 point
  22. Back like a month ago sold him a voider for i think 29m in total , he payed me 25m with the promise of paying me the 4m like a week after or somthing. Then he got the acount banned and tried to dispute me After the dispute i gave him another 2 weeks to pay me back, but it has been like 1 month now. tbh i cant care less about the 4m its more about the fact he tried to frame me and then not pay me when proven wrong
    1 point
  23. There are about 15 different distributions that produce interesting results if this is what you are looking for, but everyone's been using this for at least 10 years. OSBot is probably only using 1 of them but you can also look into Exponential, Gamma, Beta, Student, Chi Squared, Fisher, Normal and Standard distributions. Jagex does not perform any analysis of mouse data even if they collect it (since ~2013, they apparently did before) because it's too easy to counter. Machine learning will always produce 100% human like results which not even google can detect with the best programmers in the world, however machine learning is something which is quite out of reach for pretty much everyone who writes code for runescape bots.
    1 point
  24. cuz weeb: 5m and a me throwing holy water on u to get rid of ur weeb demon sins if not weeb seller: 60-75m cuz fb
    1 point
  25. Its very good haven't been ban running it for a week now if u bot smart u wont get banned most likely
    1 point
  26. Couldn't find it for this theme, but you can go to the bottom and switch to the default theme. There is a 'mark all content as read' near the bottom right.
    1 point
  27. Mining 60-70 is 464k Average 35-45K xp per hour Around 11-13hours Cba for rest, coz brain capability = bad
    1 point
  28. Hey Czar, I bought your perfect motherlode and it didn't work well with my computer. You gave me perfect stronghold in exchange, but it expired? It's no longer in my script list.
    1 point
  29. Also note that it's assumed the event has failed if it stops mid-way due to the break condition. Event#hasFailed()
    1 point
  30. Go there manually and select the option that says "Do now show this anymore". There is no way for the script to handle the wilderness warning.
    1 point
  31. You could just not have perms. I was confused, then again ur prob banned lol
    1 point
  32. I wouldnt know im banned from the discord hehe xd
    1 point
  33. Nah. Better for me that more people are getting locked. Makes farming more profitable
    1 point
  34. As far as I know it happens when Webwalking is being used, and that is only when banking or re-agro. Also when using Island spot 3, the bot sometimes execute banking, if it hopped a few worlds without finding any free spots
    1 point
  35. enjoy ur time here
    1 point
  36. deadass B i just punch myself in the dick and become angry asf ????
    1 point
  37. From my experience my lowest bans are during Jagex hours surprisingly, again this is just my opinion.
    1 point
  38. I can sell you a private fisher
    1 point
  39. 1 point
  40. s hift dropping support?`?
    1 point
×
×
  • Create New...