Leaderboard
Popular Content
Showing content with the highest reputation on 03/17/17 in all areas
-
If you use the OSBot marketplace for the right reasons you can make a lot more than he made in his scamquit and you also don't lose all of your reputation and respect. sad5 points
-
5 points
-
You could try doing something like this if you just want to get a single potion: Optional<Item> staminaPotion = Arrays.stream(getBank().getItems()) .filter(item -> item != null && item.getName().startsWith("Stamina potion")) .min(Comparator.comparing(Item::getName)); This snippet will construct a Stream from the array of all items in the bank, filter it so that only the items which are not null and has a name beginning with "Stamina potion" remain, and then find the min of those using a Comparator to compare the Item names, this should return Stamina potion (1) first etc. Note: it returns an Optional<Item>, the Optional class can be found here You use it like so: if (staminaPotion.isPresent()) { Item pot = staminaPotion.get(); } Or to get the List of all stamina potions in the bank, sorted by dosage: List<Item> staminaPotion = Arrays.stream(getBank().getItems()) .filter(item -> item != null && item.getName().startsWith("Stamina potion")) .sorted(Comparator.comparing(Item::getName)) .collect(Collectors.toList()); This snippet is similar to the above, but instead of returning the min, it instead sorts the Stream using the same Comparator, and then collects the Items into a List4 points
-
4 points
-
Ability to set custom Magic and Ranged armour sets β No limits on Kills per trip β Using a mix of user inputs and built-in logic, the script will determine if you have enough supplies for another kill without banking. Options to decide how much food youβre like to take into the next fight as a minimum. Customisable Stop Conditions Stop after 'x' kills Stop after 'x' profit Stop after 'x' runtime Stop after 'x' consecutive deaths Efficient Zulrah Fight Executor β Knows what have, is and will happen Longrange mode, gain defence XP passively with no time loss β Multiple Travel Routines Zul-Andra teleport scrolls VIA Clan Wars β Zul-Andra Teleports VIA PoH β Charter Travel β Caterby charter [via Camelot teleports] Fairy Rings β Ability to select staff to use or not use one at all for fairy rings β Summer Pie Support (72+ Agility recommended) β Fairy ring via Slayer Ring β Fairy ring via House Teleport β Ornate pool support β Jewellery box Support β Mounted Glory Support β Construction Cape Support β Ability to select Magic Only β Changes Rotations and Phases for the best possible fight experience. No need to quest for Avaβs or Level range. Swaps prayers & equipment efficiently β Option to use quick switch mode, removes mouse travel time for even faster switching Prayer Flicking on Jad Phases β Supports Raids Prayers β 55 Prayer β 74 Prayer β 77 Prayer β Options to Dynamically pray against Snakelings when Zulrah is not focused on player. β Calculates: Total loot value β Total cost of supplies used β Profit after costs β Ability to sell all your loot when you run out of supplies β Ability to top up your supplies if you run out with auto-exchange β Death-walking β Safe death boss Rechargeable item support Trident of Seas β Trident of Swamp β Blowpipe β Dynamically detects darts used (Must start with darts inside the blowpipe for it to work!) Serpentine Helm β Ring of suffering β Barrows Repairing β Using Lumbridge teleports or the Home teleport, the script will withdraw coins, travel to Bob and repair your armour then continue to run. Potion Decanting β Efficiently decants all types of potions allowing FruityZulrah to run for longer. Inventory Organising β Organises your inventory to minimise mouse movement, increasing time spent elsewhere. Combo eating Karambwams β Will combo eat karambwams to help prevent death from Zulrah and Snakelings stacks Supports blowpipe special attack β Uses the Blowpipe special attack to help replenish HP Multiple stat boosts supported Prayer β Super Restore β Magic β Ranging β Bastion β Stamina β Anti-venom+ β Imbued Heart β Supports Lunars βCure Meβ spell to cure Venom β Requires: 1 2 2 Ability to use rune pouch Level 71 Magic Lunars Quest Ideal for Ironman accounts with no access to anti-venom+ Supports Lunars Vengeance spell β Requires: 2 4 10 Perfectly times vengeance casts to Magic Phase ranged attacks for best results. Ability to use rune pouch Level 94 Magic World hopping support β Options to hop world between x and x minutes. will randomly select a time every hop. Ability to skip rotations by Hopping worlds Ability to decide on your own custom world list or just to hop to any P2P world Grand Exchange Add-on β Add-on script for free Save/load buy/sell presets Ability to dump all zulrah loot in 2 clicks Command Line Support β Start the script on multiple accounts with a single click Script ID - 903 Command: -script "903:profile=Test hours_limit=10 kills_limit=5 deaths_limit=5 profit_limit=1m" profile = saved profile name, if you've been using CLI to run the script, this will need to be updated to suit. hours_limit = Complete after 'x' run hours. kills_limit = Complete after 'x' zulrah kills deaths_limit = Complete after 'x' deaths. profit_limit = Complete after 'x' accumulated profit Pro-active calculations β Calculates next mouse position for next action whilst first action is being performed Asynchronous actions β Can perform multiple tasks at once saving time Banks Pet drops β Loot table β http://fruityscripts.com/zulrah/loot/ Displays total loot as well as a live feed of drops Hiscores β http://fruityscripts.com/zulrah/hiscores/ Compare and compete against other users Dynamic Signatures β Show off your gains with FruityZulrah url: http://fruityscripts.com/zulrah/signature/signature.php?username={USERNAME} Replace {USERNAME} with your username http://fruityscripts.com/zulrah/signature/signature.php Notifications Get Notifications for: Valuable drops β Deaths β On Exit β Timely Data dumps (GP, GP/HR, Kills, Kills/HR, Deaths, Runtime) β Types of Notifications Email β Discord ~ Desktop β β Implemented into the script ~ Work in progress View a collection of Screenshots posted by FruityZulrah users showing their progress with the script. Watch a collection of FruityZulrah videos below If you have a video you'd like to be added to the Playlist, send me a pm with a link. Videos must of course include the FruityZulrah script. If you wish to purchase FruityZulrah VIA PayPal, please follow the store link below: If you'd like to purchase FruityZulrah using OSRS GP, SEND ME A PM and i can give you my current $$:GP Rates! Discord Community: https://discord.gg/WzXRk2bWTV Trial bot has been implemented (100 post count required if you're not VIP/Sponsor!) @fruityscripts on Discord3 points
-
Fun Fact: I hardly show code to anyone, devs aside maybe 5-10 people have ever seen my code xD (obvious reasons) Mmm, Don't do as much around here as I used to, saves deleting all my code to clear space Wintertodt https://hastebin.com/otuzequmik.java Wildy Looter With Death Dection/Timer/SmartLooting(Kinda) https://hastebin.com/fomobefuca.java Clue Scrolls (add tabs yourself now the walker does them Main https://hastebin.com/ivudeyusin.java Data <-- memorable weekend https://hastebin.com/afekutobud.js Foobar https://hastebin.com/uvayukecul.scala Prayer/Guilded Altar https://hastebin.com/izaburulun.java Tanner https://hastebin.com/epicusexan.java The Age old dark miner https://hastebin.com/eqeyoxevux.java Dark NMZ https://hastebin.com/osuveguvis.java Anything else wanted ask and I'll see if I have it, got 4 years worth of scripts laying around... Edits: Something that gets amulets blessed in edge prayer place..? https://hastebin.com/omecuvucuj.java Presumeably smelts gold jewlery, change keywords to adapt. https://hastebin.com/jezamebici.java Makes some kinda dough https://hastebin.com/yogugelihi.java3 points
-
Microsoft Security Essentials. Premium antivirus softwares are a scam, they cant protect against a stupid user.3 points
-
I agree. The language on this forum is too vulgar for my undeveloped brain. By time I hit 25 I'll have nothing but profanity sayings in my head3 points
-
You are only allowed to give 20 likes per day. You cannot give any more likes today. You want someone to do quest cape without bank access? Just move your wealth to a new account and leave what the user will be needing on the account.3 points
-
Why not try out a private script, you can get what the fuck you want. only person to have it - reduce bans3 points
-
3 points
-
I post here but whatever I'd post would end up on @Saiyan's wallpaper (AND I'M NOT EVEN FUCKING KIDDING) Besides literally everyone knows what I look like anyways3 points
-
PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.2 points
-
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:nogui2 points
-
2 points
-
i am a cute shiba inu who is really good at questing Price most are listed, if you need any other quest pm me or add skype: streaks.rs my services are more expensive than other because i have 200+fb and all the quest listed i have done hundreds of times(excluding mm2) so i am experienced and a very quick quester Terms of Service 1. If the account does not have a requirement for the service , the service will be terminated and you will not be refunded (unless its a package from lvl 3). 2. Global ToS Form Do you agree to the ToS? Your skype/Have you added me:2 points
-
This is actually pretty ridiculous. I spent the past five minutes looking through the forum for the rules. It's not at the top of the forum where all the other advertisements are... It's not blatantly obvious on the top of the front page at all... And in the "News & Announcements", it's the second to last pinned thread - you have to scroll down the page just to find it, unless you have a big monitor. How can you expect people to follow the rules if it's not plainly visible? While I do realize that ignorance is not an excuse, you really should make it simpler to find the rules. It took me five minutes looking through here and I already knew where it was - I went to News & Announcements and scanned the top of the page. When I didn't see it, I backed up and looked elsewhere. Only later on did I come back here for a closer look to find it at the bottom of the pinned threads.2 points
-
Disputed member: @magpiemad7 Thread Link: https://osbot.org/forum/profile/234119-magpiemad7/?tab=node_feedback_Feedback Explanation: Accounts which left feedback for user "Magpiemad7" all never logged back in after a short while of being on osbot, seems v suspicious Evidence: One of the users who left a feedback:2 points
-
2 points
-
I am trying to detect if my client is zoomed in or out. There's no configs for it so I am unsure how else to do it without checking for a widget. Never mind, I figured it out. Debugged the Z value to figure it out. //close2 points
-
Will people ever learn to not give accounts they care about that have a value to random plebs? I understand using them for botting accs (zulrah and so on) ect...or starter accounts , but accounts that have some value Always check there feedback and such , 30+ doesnt mean hes super trusted especially if most of it are 1-4m jobs aka fb farming Hopefully soon(tm) people will start to learn (Pls dont mention kalemscott or wth his name and sahand thx)2 points
-
2 points
-
Feedback and Join date matter, also if names are similar to James automatically they aren't trusted imo2 points
-
2 points
-
Lmao knew this tosser was a skid soon as he started pipin up to me. Weak hustle.2 points
-
2 points
-
2 points
-
2 points
-
2 points
-
it helped! made me curious to look into it further and to put into TWC2 points
-
@Crime is already banned for having 3 other disputes against him, should he wish to sort stuff out and refund, he'll have to do so via Skype via one of us. He'll also owe you your 25m deposit.2 points
-
You're smart enough to figure that out. Provide skype logs where you discussed the trade with each user. Also, make sure dates are clearly visible.2 points
-
ones made privately work better, I have them in all my private scripts2 points
-
2 points
-
by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache1 point
-
1 point
-
1 point
-
Hey Czar - I am the Mac user. Just wanted to let you know I finally got the fight area working! great script so far - thanks!1 point
-
1 point
-
1 point
-
1 point
-
Very minor bug but thought would post it neway Was doing gargoyles, gmaul dropped. Script equips the gmaul and uses it as main weapon for the rest of the task (even if i try to manually switch back to my other weapon/offhand) This happens with special attack off.1 point
-
1 point
-
I don't do gfx work lol I just made it because I need practice and I'm afk training an account at the moment :P If you need anything let me know and I can try1 point
-
1 point
-
1 point