Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/05/17 in Posts

  1. 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
    9 points
  2. 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
  3. 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
  4. is that why you've been try harding for the past year to get anything close to a rank with power?
    3 points
  5. 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
  6. 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 competition
    3 points
  7. 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
  8. lol? 5m? less than a dollar per hour if you get unlucky and too many leavers
    2 points
  9. 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 refund
    2 points
  10. Can you please take a screenshot of his Skype ID (click his profile picture) with the conversation visible in the background?
    2 points
  11. Done activated all trials good luck guys ^^
    2 points
  12. 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
  13. Looking for a Private Script? Add my discord! Juggles#6302 AIO Shop Buyer http://i.imgur.com/kzB7ZoA.png Have questions? For fast support and latest updates, join the Discord!  https://discord.gg/pub3PEJ What it does: Supports 99% of shops with banking Automatically detects closest banks Automatically detects if f2p or p2p and hops worlds accordingly All bank booths supported Buys an item from the NPC Walks back to the shop after banking. Enable World Hopping Handles any obstacle in the way of you and the NPC Beautiful GUI Logs out when low on money Supports up to 1 different item! Now supports bank chests Coming Soon Tab: [Closed] This is where I will be custom coding specific spots that you can enable that do not fit into the general criteria. I will be taking requests for custom places to add once the script is uploaded to the SDN and when I have free time. List of Banks Supported Instructions on how to start the script **If there is an obstacles in the way such as a door, please start the script inside the shop at least 1 tile away from the obstacle** ** For best results, start the script in the center of the shop away from any walls by at least 1 tile. ** If you are doing F2P, make sure your world order has all the f2p worlds at the top or it will not properly. Required fields in red: * Everything must be typed exactly how it appears in RS including capitals*
    1 point
  14. 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 coordinates
    1 point
  15. Download: https://www.mediafire.com/?8b4ghwjyupjy58x Reports any player in your area. Have fun. Set it up in a crowded area and watch it go to work. Can report up to 1200 people per hour. Post proggies Need to edit paint tomorrow xD
    1 point
  16. 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
  17. hello can i buy with rs gp too? i saw the voucher option but it doesnt work anymore. can you contact me pls? and also can i try the 24h trail?
    1 point
  18. not bad. Grolsch and Schultenbräu > hertog jan tho @Op isnt bud like the shittiest beer ever
    1 point
  19. 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 dedicated
    1 point
  20. 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
  21. is it possible to let the master just stay in the ruins and accept? and how do i get master to accept all workers?
    1 point
  22. When using a cannon, it doesn't seem to fix the cannon once it breaks. Am I missing a setting? :P
    1 point
  23. He doesn't need screenshots. or maybe he does.
    1 point
  24. ZMI banks very long... like 1 tick in 10 secs. Astrals sometimes opens bank takes stamina and wait for ages. LAvas just trying to press second time magic imbue (going with this method) Very good xp/h like a bot
    1 point
  25. I change my IP with every account that I make besides my main, which I don't bot on
    1 point
  26. Damn that's a pretty gnarly story at Zeah, I'll keep you guys informed maybe it's nothing.
    1 point
  27. 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 option
    1 point
  28. But it doesn't re-equip the arrows?
    1 point
  29. Is there an option to equip my arrows after it has been picked up?
    1 point
  30. your personality is a negative therefore instead of being 0.01 or something you the -0.01 NlGGA.
    1 point
  31. Damn y'all got me scared now.
    1 point
  32. 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
  33. Looks great, could definitely get 76 agil on some alts with this
    1 point
  34. Hey can I get a trial please?
    1 point
  35. From when I used to have muscles
    1 point
  36. I have my irl picture in my avatar, I'm the horse Who TF is that on my back get him off!
    1 point
×
×
  • Create New...