Leaderboard
Popular Content
Showing content with the highest reputation on 05/15/17 in all areas
-
4 points
-
3 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
-
Making this from my phone, MGI has fixed mirror mode, sorry for the downtime. We will be extending vip by 14 days sometime this week.2 points
-
States are unnecessary and messy, cleanest way is: if not attacking seagull: attack seagull else: relax That's pretty good, but: You don't need to check if the seagull is visible and call camera.ToEntity You should be checking if your player is already attacking a seagull before calling attackNpc, not in attackNpc You should null check seagull, just in case there aren't any, as your code currently will throw a NullPointerException It would be cleaner to filter a seagull that isn't under attack in the closest method(), rather than after You should check the the "Attack" interaction is successful before sleeping. Your condition in the ConditonalSleep is incorrect. You should check whether your player is interacting with the seagull, or the seagull is not attackable. Take a look at the isAttackable() method for NPCs, it will perform all the checks such as exists, not under attack and has health > 0 for you. NPC seagull = getNpcs().closest(npc -> npc.getName().equals("Seagull") && npc.isAttackable()); if (seagull != null && seagull.interact("Attack")) { new ConditionalSleep(5000) { @Override public boolean condition() { return myPlayer().isInteracting(seagull) || !seagull.isAttackable(); } }.sleep(); }2 points
-
2 points
-
2 points
-
private List<String> getOthersEquipment(Player p) { List<String> equipmentList = new LinkedList<String>(); if(p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if (equipment[i] - 512 > 0) equipmentList.add(ItemDefinition.forId(equipment[i] - 512).getName()); } } return equipmentList; } Note: int[] equipment = p.getDefinition().getAppearance(); Index Order: [0] = helmet [1] = cape [2] = necklace [3] = weapon [4] = chest [5] = shield [7] = legs [9] = gloves [10] = boots - Can only grab visible items (no ring or ammo, etc.) - Each value from getAppearance() needs to have 512 subtracted from it in order to get the item id Or if you want it so you can grab specific pieces: private HashMap<EquipmentSlot, String> getOthersEquipment(Player p) { HashMap<EquipmentSlot, String> equipmentList = new HashMap<EquipmentSlot, String>(); if (p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if(equipment[i] - 512 > 0){ switch(i){ case 0: equipmentList.put(EquipmentSlot.HAT, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 1: equipmentList.put(EquipmentSlot.CAPE, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 2: equipmentList.put(EquipmentSlot.AMULET, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 3: equipmentList.put(EquipmentSlot.WEAPON, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 4: equipmentList.put(EquipmentSlot.CHEST, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 5: equipmentList.put(EquipmentSlot.SHIELD, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 7: equipmentList.put(EquipmentSlot.LEGS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 9: equipmentList.put(EquipmentSlot.HANDS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 10: equipmentList.put(EquipmentSlot.FEET, ItemDefinition.forId(equipment[i] - 512).getName()); break; } } } } return equipmentList; }2 points
-
You think so? As in my opinion 55$ is not really that much for 6 months Makes it less than 10/month Which i could easily afford and its always nice to support botting sites2 points
-
Morning, Apologies for fuck up, was an issue with the new world hopping thing. I have updated soon as i have noticed issues (ty for pms, appreciate it). Update is now awaiting for approval onto the SDN. A quick fix for you's would be to add any world to the hop list but then just leave the hop time at 0mins. I believe this will sort it for u in the mean time! Again apologies for the fk up, fix is on its way, hacky way to make it work above!2 points
-
2 points
-
1. Pictures of the account stats 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) 4. Pictures of the quests completed 5. The price you will be starting bids at 8M 6. The A/W (Auto-win) for your account 12M 7. The methods of payment you are accepting Osrs Gp Description: Selling this account because i trained it to be a Black chin tank but i dont see a need for. This account will stand at lumbridge spawn. Only selling to trusted people.1 point
-
Stock: 15 6. The A/W (Auto-win) for your account 2 m 7. The methods of payment you are accepting RSGP 07 8. Your trading conditions you will go first you must leave feedback once it is sold I am not responsible. 10. Original Email Address (See below for more details) no register email skype: galban2511 point
-
add my skype brother i'm going to train it but it cost too much bro i got no ava because the 1 prayer1 point
-
1)-30 - 35m - does it have mith gloves? if so more 2) 30 - 35m with the range levels and att you say1 point
-
1 point
-
Applies to both being attacked and attacking, as well as for other npcs/players if twist the code a bit1 point
-
1 point
-
1 point
-
1 point
-
70/70/70 nmz quested goes for 20-30m so this one should be 12-15m, eg: get 70/70/70 and nmz quests and sell it afterwards1 point
-
Playing around with some GFX style text effect in photoshop only it looks that the 3d effect on there is very limited. Made these 2 (im new to the flashy things, more into illustrated/vector designs and i think ill stick to that anyway since there is enough gfx) and I cant seem to do anything 'cool' with the 3d. Is Cinema 4D better to use? if anyone likes this style instead (the vector/2d style) hit me up. More experienced with that incase you want something smooth and clean, preview sig down below, ofcourse i just started with forum stuff, so still new to it1 point
-
Putting a sleep before or after buyItem/sellItem won't change a single thing; that or you deobfuscated the jar, reversed the methods, then re-wrote them with your new sleeps in the method? I have no idea where you are putting these magical sleeps.1 point
-
Depends on what you want, if you are planning on staying longer, Sponsor is better in the long run, if you want to test it out first, VIP is better1 point
-
Check if the NPC you are fighting has 0 health, or no longer exists. If that is the case, increment your kill counter by 1 and look for a new NPC to fight.1 point
-
Yeah I had normal one unfortunately six months passed about to get lifetime or $100 donor soon1 point
-
1 point
-
To avoid attacking thugs enable the option: only return combat to my npcs, it's in misc tab. For bbd plugin so the script leaves cave, doesn't hop and then returns to cave? Will test asap. For gdk glory support, yes it is supported but the best option is games necklace + duel ring, well if you want to use glory make sure you only have 1 ammy/necklace so no glory/games necklace combination only one of them. I will make the aggro tile further away in next version. Will be announcing next update within a few hours stay tuned guys1 point
-
Can u increase the amount it runs to reset for sand crabs on crab claws isle? I'm using the west position in the middle1 point
-
i suggest you go to great korend and go to far west, if your stats are decent you wont need to bring any food also if you want that 2k gp per hour turn on rare loot drop table1 point
-
what settings do you use for sand crabs? mine doesn't reset for some reason edit: nvm works fine1 point
-
1 point
-
well, after using this on sand crabs from 30/30/30 i got 60/60/60 in around 20 hours, using trial but am going to buy this for sure (just a heads up, if your doing edgeville chaos druids, after banking and coming back it only attacks thugs but that might just be because i was using bury bones1 point
-
@czar world hopping not working for brutal black dragon plugin. exit and re enters cave again. can you have it not recharge prayer at altar unless it runs out of prayer pots and add option to tele to clan wars and use xerics amulet to get back to brutal black dragons?1 point
-
1. The GE API I wrote is probably much better (no offense to whoever wrote it) 2. It's easier to use the OSBot API than including external libraries (or copy-pastaing snippets)1 point
-
1 point
-
1 point
-
Account banned for macroing in OldSchool. Our macro detection system has been monitoring your account closely and has detected that you are using illegal 3rd party software which violates the rules of the game and breaches your terms of service with Jagex. Our team have reviewed the evidence and can confirm that you were using illegal botting software. Jagex are able to accurately detect all illegal 3rd party software and any promises from their makers about being 'totally undetectable' or 'no ban guaranteed' are inaccurate. As such your account has been permanently removed from game. This is not an appealable offence and we will not review it should you contact us by email, ticket or social media. Please take this time to familiarise yourself with the rules should you wish to create another account. Used this bot for less than 30 minutes to test and got banned hahaha..1 point
-
1 point
-
Hello, supports Glory? For banking at Edgeville or so, supports looting bag? Anti-PK system? It's for using at chaos/greens1 point
-
If you're asking what to do with it than you're not smart enough to avoid getting caught.1 point
-
Been looking for a decent orber to get me 94 mage while I have exams ;)! Could i have a trial please?1 point
-
1 point
-
1 point
-
In the process of buying 10accs. Cheeeers EDIT: Order completed thanks :))1 point
-
1 point
-
It shows if you were able to sell your items at Varrock west before GE or not1 point