Leaderboard
Popular Content
Showing content with the highest reputation on 03/05/17 in all areas
-
import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.event.Event; public final class ToggleShiftDropEvent extends Event { @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(getShiftDropWidget() == null || !getShiftDropWidget().isVisible()) { getGameSettingsWidget().interact(); } else { boolean enabled = getSettings().isShiftDropActive(); if (getShiftDropWidget().interact()) { Sleep.sleepUntil(() -> getSettings().isShiftDropActive() != enabled, 3000); setFinished(); } } return random(100, 200); } private RS2Widget getShiftDropWidget() { return getWidgets().singleFilter(getWidgets().getAll(), new WidgetActionFilter("Toggle shift click to drop")); } private RS2Widget getGameSettingsWidget() { return getWidgets().singleFilter(getWidgets().getAll(), new WidgetActionFilter("Controls")); } } class WidgetActionFilter implements Filter<RS2Widget> { private final String action; WidgetActionFilter(final String action) { this.action = action; } @Override public boolean match(RS2Widget rs2Widget) { if (rs2Widget == null) { return false; } if (rs2Widget.getInteractActions() == null) { return false; } for (String action : rs2Widget.getInteractActions()) { if (this.action.equals(action)) { return true; } } return false; } }6 points
-
NEW! Added Gemstone Crab! 81 Hours at Cows Brutal Black Dragon support Sulphur Nagua support Blue Dragon 99 ranged 99 Ranged at Gemstone Crab 81 Range F2p Safespotting Hill Giants Hotkey List // F1 = set cannon tile // F2 = hide paint // F3 = Set afk tile // F4 = reset afk tile // F6 = Set safespot tile // F7 = activate tile selector // F8 = Reset tile selector // F9 and F10 used by the client, EDIT: will re-assign as they are no longer used by client // F11 = Set breaks tile // F12 = Reset breaks tile User Interface Banking Tab Demo (handles everything with banking) You can copy inventory (to avoid adding individual items...), you can insert item names which have Auto-Fill (for you lazy folk!) and you can choose whether to block an item and avoid depositing it in bank, ideal for runes and ammo. Looting Tab Demo (From looting to alchemy, noted/stackable items too) You can choose whether to alch an item after looting it simply by enabling a checkbox, with a visual representation. All items are saved upon exiting the bot, for your convenience! Tasking Demo (Not to be confused with sequence mode, this is an individual task for leveling) You can set stop conditions, for example to stop the bot after looting a visage, you can have a leveling streak by changing attack styles and training all combat stats, you can have windows alert bubbles when an event occurs and an expansive layout for misc. options! Prayer Flick Demo (Just example, I made it faster after recording this GIF) There are two settings: Safe mode and efficient mode, this is safe mode: Fight Bounds Demo Allows you to setup the fight bounds easily! Simplified NPC chooser Either choose nearby (local) NPCs or enter an NPC name to find the nearest fight location! Simple interface, just click! Level Task Switch Demo (Switching to attack combat style after getting 5 defence) You can choose how often to keep levels together! e.g. switch styles every 3 levels Cannon Demo (Cannon is still experimental, beta mode!) Choose to kill npcs with a cannon, recharges at a random revolution after around 20-24 hits to make sure the cannon never goes empty too! Results Caged Ogres: How does this bot know where to find NPCs? This bot will find far-away npcs by simply typing the NPC name. All NPCs in the game, including their spawn points have been documented, the bot knows where they are. You can type 'Hill giant' while your account is in Lumbridge, and the bot will find it's way to the edgeville dungeon Hill giants area! Here is a visual representation of the spawn system in action (this is just a visual tool, map mode is not added due to it requiring too much CPU) Fight Area Example (How the bot searches for the npc 'Wolf') Walking System The script has 2 main walking options which have distinctive effects on the script. The walking system is basically a map with points and connections linking each point. It tells the script where to go, and decides the routes to take when walking to fightzones. Walking system 1 This uses a custom walking API written by myself and is constantly being updated as new fightzones are added. Pros: - Updates are instant, no waiting times - More fightzones are supported Cons: - Sometimes if an object is altered, the changes are not instant - Restarting the script too many times requires loading this webwalker each time which adds unnecessary memory (there is no way to make it only load at client startup since I don't control the client) Walking system 2 This is the default OSBot webwalking API - it is relatively new and very stable since the developers have built it, but is currently lacking certain fightzones (e.g. stronghold) and other high level requirement zones. It is perfect for normal walking (no object interactions or stairs, entrances etc) and never fails. Pros: - Stable, works perfect for normal walking - All scripters are giving code to improve the client webwalker - More efficient when restarting the script since it is loaded upon client start Cons: - No stronghold support yet - Some new/rare fightzones not supported yet - If there is a game-breaking update or an unsupported fightzone, it may take some time to add/repair (less than 24 hours usually) So which system should I choose? Whichever one suits your chosen fightzone best! There really shouldn't be any problems - the sole purpose of these options are for backup and emergency purposes, if the script ever messes up there is always the next option to select. Note: If the script ever fails, there will be immediate updates to fix the walking systems! Script Queue/Bot Manager: Script ID is 758, and the parameters will be the profile name that you saved in the fighter setup! Bug Report templates: New feature request - What is the new feature - Basic description of what the script should do - Basic actions for the script: 'Use item on item' etc. For when the script gets stuck on a tile (or continuous loop): - Which exact tile does the script get stuck on? (exact tile, not 'near the draynor village') - Plugin or normal script? - Did you try all 3 walking options? Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug - How did you make the bug happen - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? - Normal script or a plugin? - Which exact setup options are enabled? Afk mode, cannon mode, etc etc.3 points
-
is that why you've been try harding for the past year to get anything close to a rank with power?3 points
-
You must be the dumb kid in class who gets picked on every day and come here acting cool and stuff, Mio nice cb ban!3 points
-
New Update (v185) - Brutal black dragons world hopping finally perfected (apologies guys, it took 2 updates ) - Added another update for cannon repairing, sometimes the cannon would break (apologies guys, the cannon never broke for me so I didn't know what the cannon object name/options would turn into) - Added wait timer before hopping, for plugins too - script will either wait until out of combat or run when target (aggressive) is full hp. - Added 'go to bank before stopping script' in stop conditions tab Update will be live within 24 hours good luck guys ^^ Last update (v184) is now live, don't forget that GDK plugin doesn't have the prayer flick bug anymore ^^ Can finally focus on finishing the anti-pk code for the 100M GDK competition3 points
-
3 points
-
Yes, in your snippet you are sleeping for 0-100ms, not exactly long enough for the bank to open, especially if your player has to walk there first. If you use getBank().open() it will sleep until the bank is open, so something like this should work: if (!getBank().isOpen()) { getBank().open(); } else { getBank().depositAll(); } RS2Object is a subinterface of Entity, so what he wrote is fine:3 points
-
2 points
-
2 points
-
So somehow OSBot has a leaked database and only you and maybe 5 people have gotten hacked, not the 1000+ other members It's because of the fact that you use the same password for other forums, you might not admit it now but at least admit it to yourself. If it wasn't that it could have been something such as a keylogger. TLDR; it could be anything. At the end of the day you're responsible for your own account, you own it therefore you are responsible for it. You have 6 hours to refund2 points
-
Can you please take a screenshot of his Skype ID (click his profile picture) with the conversation visible in the background?2 points
-
2 points
-
2 points
-
2 points
-
Btw, if you think that I photoshopped it because I'm a PS pro, no I did not. Why would I lie about that.2 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 Discord1 point
-
Explv's Map A map tool to allow the simple creation of areas, poly areas, paths and positions. GITHUB: https://github.com/Explv/Explv.github.io WEBSITE: http://explv.github.io/ NOW SUPPORTS DUNGEONS (Type the dungeon name into the search box): If you would like to assist me with identifying dungeons and other areas The first set of areas is around 2868, 4658, 0 (you can go there by typing the coordinates into the boxes at the top right). Move the map around and you will see a bunch of areas without names. The second set of areas is around 2875, 9452, 0 Provide me with the name of the dungeon, and the x, y coordinates1 point
-
The introduction Hello all. Guessing it is time for me to release my first script. I am doing this one open source because i need some advice on what can be improved (code wise) and what I am doing wrong. So this release is primarily for my education, but also for people who might consider writing a fishing script, then this is in my opinion a good place to start If anybody have any questing regarding my code or ways I can improve my code please let me know here, on the chat or pm me I have added the zip file containing the source files and the CLFishing.jar to run this script in OSBot. All you have to do is to put the "clfishing" folder into your source folder in any IDE. Any questions? Just ask If you can use any of the code please reply to the post and letting me know . When PF mode is selected the bot will find the closest area to you depending on what fishing type you selected. After that it find the closest bank to that area. When NF mode is selected the bot will find area and bank closest to each other depending on which fishing type you selected. If fishing type "LEVEL" is selected it will found out what fishing type you should fish and the fishing area and banking area as mentioned above. This script does require all the items needed to be placed in the bank or the script closes by it self. Paint by Container CLFishing - The script The source code (History) clfishing.zip Contains the first version of this script and the source code. clfishing2.zip Contains the rewritten script with less code. Found bugs You cant walk to musa point cathing lobsters. This is gonna be a later fix. Or something you can do yourself.1 point
-
Looking to take on a few extra members to join Power Elite Services Requirements: - 30M Deposit fee, 20M is received back upon leaving - Knowledge of Runescape Services & Customer Interaction - Skype & the ability to speak english - No open Scam Reports or previously been a TWC user - Clean reputation across the board, I will ask & look upon other sites to see your rep Terms of Service - No form of botting or macro'ing software is allowed even if the client requests it you're to turn them away Power Elite Services is only hand done services - No arguing with any other workers or myself this can be cause to loose your deposit if it is just nonsense - If any scam is to occur you will forfeit your deposit & if I think you're about to scam you will be asked to leave the service taking your deposit back (20M) - All orders go through me before you agree to taking on any services under Power Elite Services - Advertising our service is encouraged, but my Skype is the priority they add to avoid any confusion of the situation - Any orders taken on upon yourself must be completed in the given time frame, things come up I am reasonable discuss privately - Communication is key if you're going to be away it needs to be communicated - Any payment gone through yourself is solely a service upon you I nor the services you're affiliated with will be apart of it - Any services taken under Power Elite Services has to go through me failure to do so can result in force leaving Application Form: Do you agree to the terms?: Do you have the deposit fee?: Are you or have you been affiliated with other services?: What's your Skype?1 point
-
It will stay for now until it is resolved. We reserve the right to protect our users. Even though it's possible you didn't do anything, if you're under investigation on another site it's a higher chance that something is up, and it would be better for the rest of our users if we took proper precautions in situations like these to prevent scams.1 point
-
For xp, like I show in my paint tutorial, you use the XP tracker. In onStart() call: getExperienceTracker().start(Skill.WOODCUTTING); Then in your paint: g.drawString("XP Gained: " + formatValue(getExperienceTracker().getGainedXP(Skill.WOODCUTTING)), x, y); Or for xp/hour you can use getExperienceTracker().getGainedXPPerHour(Skill.WOODCUTTING)1 point
-
i aint even need a trial, i just bought this shit.got me to 35 for horror from the deep. bouta buy your crafter and theiver too. need to do dt on my pure and im lazy af. thanks for the work man. i fucked with hella other bot sites and always got me banned. u seem hella dedicated1 point
-
As for the Anti-pk U can do maybe a list we add dangerous items? so it doesn't always need to search for skulls and it may be a pker who isin't skulled and can just tb u from first hit.1 point
-
1 point
-
I change my IP with every account that I make besides my main, which I don't bot on1 point
-
Could I please have a trial? Never bought anything on this site and I would like to make this my first if it works good!1 point
-
1 point
-
1 point
-
1 point
-
It will re-equip arrows after some time, usually when there's either low equipped ammo or just any random arrow amount over 50 at some point in time. I can easily add an option to re-equip arrows every time they are looted? Btw guys, stop conditions have been added for the rock/sand crab plugins too (just in case anyone is wondering). Also, I just added another quick update on top of the last version: added 'stop if haven't earned slayer xp' failsafe option1 point
-
1 point
-
1 point
-
your personality is a negative therefore instead of being 0.01 or something you the -0.01 NlGGA.1 point
-
yeah, save it as a .bat ur cpu is not enough, had the same problem yesterday1 point
-
1 point
-
1 point
-
1 point
-
Hello, i recently came back with rs and have a lot of agility ahead. I am not sure if i have tested this script long time ago or not. So if it is possible, could i have a trial to test the script out? (I also have bought already atleast two of your other scripts :p)1 point
-
1 point
-
I have my irl picture in my avatar, I'm the horse Who TF is that on my back get him off!1 point
-
1 point
-
1 point