Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/27/23 in Posts

  1. 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.
    2 points
  2. package main; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.text.NumberFormat; import java.util.Locale; @ScriptManifest(author = "Famers", info = "Ardougne Agility Course", name ="Ardougne Agility", version = 1.0, logo = "") public class ArdyAgility extends Script { private enum State { WaitStart, Part1, Part2, Part3, Part4, Part5, Part6, Part7, } private static int PART_1 = 15608; // Wooden Beams private static int PART_2 = 15609; // Gap private static int PART_3 = 26635; // Plank private static int PART_4 = 15610; // Gap private static int PART_5 = 15611; // Gap private static int PART_6 = 28912; // Steep Roof private static int PART_7 = 15612; // Gap private static Position PART_1_POS = new Position(2671, 3299, 3); private static Position PART_2_POS = new Position(2665, 3318, 3); private static Position PART_3_POS = new Position(2656, 3318, 3); private static Position PART_4_POS = new Position(2653, 3314, 3); private static Position PART_5_POS = new Position(2651, 3309, 3); private static Position PART_6_POS = new Position(2656, 3297, 3); private static int MARK_OF_GRACE = 11849; private State state; private int hourExp, totalExp; public void onStart() throws InterruptedException { experienceTracker.start(Skill.AGILITY); state = State.WaitStart; while (myPosition().getZ() != 0) { sleep(1000); } state = State.Part1; } public void onPaint(Graphics2D g) { g.setFont(new Font("Consolas", Font.PLAIN, 12)); g.drawString("State: " + state, 10, 290); totalExp = experienceTracker.getGainedXP(Skill.AGILITY); hourExp = experienceTracker.getGainedXPPerHour(Skill.AGILITY); g.drawString("Agility Exp Gained: " + totalExp + " (" + NumberFormat.getNumberInstance(Locale.US).format(hourExp) + "xp/h)", 10, 320); } private int attempts = 0; @Override public int onLoop() { Position self = myPosition(); if (self.getZ() == 0 && state != State.Part1) { state = State.Part1; return random(300, 400); } switch (state) { case Part1: if (positionEquals(self, PART_1_POS)) { state = State.Part2; } if (self.getZ() == 0 || attempts > 10) { objects.closest(PART_1).interact(); attempts = 0; return random(5000, 5500); } break; case Part2: if (positionEquals(self, PART_2_POS)) { state = State.Part3; } if (positionEquals(self, PART_1_POS) || attempts > 10) { objects.closest(PART_2).interact(); attempts = 0; return random(1200, 1500); } break; case Part3: if (positionEquals(self, PART_3_POS)) { state = State.Part4; } if (positionEquals(self, PART_2_POS) || attempts > 10) { objects.closest(PART_3).interact(); attempts = 0; return random(1200, 1500); } break; case Part4: java.util.List<GroundItem> groundItems = getGroundItems() .filter(groundItem -> groundItem.getId() == MARK_OF_GRACE); int itemCount = groundItems.stream() .map(item -> item.getAmount()) .reduce(0, (a, b) -> a + b); if (itemCount >= 5) { for (GroundItem item : groundItems) { item.interact(); } } if (positionEquals(self, PART_4_POS)) { state = State.Part5; } if (positionEquals(self, PART_3_POS) || attempts > 10) { objects.closest(PART_4).interact(); attempts = 0; return random(1200, 1500); } break; case Part5: if (positionEquals(self, PART_5_POS)) { state = State.Part6; } if (positionEquals(self, PART_4_POS) || attempts > 10) { objects.closest(PART_5).interact(); attempts = 0; return random(1200, 1500); } break; case Part6: if (positionEquals(self, PART_6_POS)) { state = State.Part7; } if (positionEquals(self, PART_5_POS) || attempts > 10) { objects.closest(PART_6).interact(); attempts = 0; return random(1200, 1500); } break; case Part7: if (positionEquals(self, PART_6_POS) || attempts > 10) { objects.closest(PART_7).interact(); attempts = 0; return random(1200, 1500); } break; } attempts++; return random(600, 700); } private static boolean positionEquals(Position a, Position b) { return a.getX() == b.getX() && a.getY() == b.getY() && a.getZ() == b.getZ(); } } Very simple but it worked. Note I only used it after 96 agility so idk if it recovers after failing. (~57k/hr if you position camera such that it doesn't need to reposition)
    2 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
    1 point
  4. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Plays the minegame flawless - Account builder from fresh to GOTR ready - Buys required items option - Times to use the portal as much as possible - Repair barriers - Assemble guardians - Use portal talismans - Keep mining until firts portal option - All pouches supported + progressive pouch mode support - Buy Raiments of the Eye outfit mode - Light and equip Abyssal lantern mode - Auto colossal pouch crafting - Multiple pouch repair modes - Lunars NPC contact (Requires Rune pouch) - Coredelia (Requires a bunch of abyssal perals) - UIM mode - Rune dropping option - Hide tanning - Auto balance points OR setup your own priority list - Use pickaxe special attack - Hop world mode - Pickaxe upgrading - Looting rewards guardian - CLI support for goldfarmers 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 1182: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 1182): -script 1182:TaskList1.4515breaks (With breaks) -script 1182:TaskList1.4515breaks.discord1 (With breaks & discord) -script 1182:TaskList1..discord1 (NO breaks & discord) Proggies:
    1 point
  5. The most complete, most features, Guardians of the Rift Bot anywhere on the market, provably so! by Czar New record is 285 hours!!!!!!!!!! Full feature list (All-in-one solution) - Completes Rune Mysteries, Enter the Abyss, Temple of the Eye, 10 runecrafting - Supports filling/emptying all essence pouches, and repairing (both npc contact and cordelia repair) - Supports ALL pouches, including Colossal Pouch - Upgrade pickaxe - Loot chest and buy, wear robes - Minigame teleport + webwalk from anywhere in the game - Uses catalytic talismans whenever possible - Deposits runes at pool, or drops them if UIM - Assembles guardians if limit isn't reached - Places cells as soon as available - Screenshot on pet drop - Custom breaks per games played randomly (e.g. 10-25 games -> trigger breaks) - Hop worlds if not already in an official world - CLI Support - Bot manager support - Mine until portal appears option (strategy) - Unlocks pouches as you progress - Account builder ready, start from tutorial island!! - Buys raiments of the eye robes automatically - Prioritises portals for better essence - Automatically loots rewards from the guardian chest - Supports talismans and drops useless items to save space for more XP - UIM and GIM support, can share a bank too! - Unlocks Cordelia repair option too (25 initial cost, 1 pearl after) - Repairs barriers - Buys everything needed - Does all the quests required - Choose how long to run the bot, how long to take breaks for, when to start/stop - World hopping support, prioritises official GOTR worlds too! - Saving/loading profiles for quicker setup, easiest on OSBot, compatible with bot manager, queue, CLI too! - Balances points automatically, or choose elemental/catalytic only - Repairs pouches via Cordelia! new! - Smart scheduling, you can choose to stop at needle + full set, or even 99! - Opens intricate pouches new! - Uses reward lamps on runecrafting new! - Food while questing! (even buys wines!!) new! - Smart world hop system, detects low pop worlds! new! - Added new wiki strategy to get more points! new! - Automatically builds colossal pouch for you! new!
    1 point
  6. NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png
    1 point
  7. Results Instructions There are no instructions. We do the all the work for you. CzarScripting™ Tips Make sure to set food in your setup window! Don't bot more than 12 hours a day! It's not humanlike! Features - All locations supported, including Crab Claw Isle - Banking support - All combat types supported (ranged, all ammo + ranging types, including looting) - Activity Slider -- choose 4 different activity settings from: (Afk my position, Afk any generated position, Attack visible/active crabs only, Full activity/attack all) - Aggression Slider -- choose from 4 different aggression settings: (Only retaliate to crabs, Attack people's crabs when none are found, Attack all crabs, ONLY attack other people's crabs) - Tasked levelling - allows you to set level goals and switch attack styles to raise different skills, e.g. set goals to 50 70 70, from current stats 44 51 55, it will reach the goal stats. - Skill Priority: you can choose in which order to raise the stats, e.g. lowest first, nearest to goal first, top->bottom, bottom->top, level-up evenly, etc. - Customized Stop Conditions: stop script when a certain condition is met, e.g. reached goal stats, killed X crabs, time passed, ran out of equipment, items, etc. - Simple (on user's side) inventory layout chooser consistent with all my scripts -> 1 button copies inventory layout and saves it - World hop support, with player count chooser -- World hop customization: allows you to choose which tile to hop worlds from -- Break tile chooser: allows you to choose which tile to break on, ~3 minutes before breaks trigger - 'Non-botting' mode (very popular): allows you to afk the script and technically not bot at all: the script will display jframe popups (and beep) when crabs are no longer aggressive which will prompt the user to manually refresh the crabs by walking up - Item looting, including rare drop table option - Potion support (all potion types) - Crab refreshing by walking out of the region Gallery
    1 point
  8. ** $14.99 - 24 hour trials available - like and comment on this thread Don't pm me on OSBot or Discord to ask for a trial. Loot anything, anywhere, with this highly customizable script! PvP worlds, waiting on loot piles, drop parties across Gielinor, even popping balloons in the party room! Buy The Script Here Check out these videos on using Fury AIO Looter to make money! [OSRS] Botting To Ban #7: Looting ! Crazy Profit [OSRS] Botting To Ban #8: F2P Looting FAQs: What does x setting on GUI mean? Look in the GUI spoiler below for a detailed explanation of what each option does. What settings should I use? WHATS THE BEST??? Whatever works for you, try new things until you find something thats good. I made it as customizable as possible for a reason There is no "best" settings before you ask me. lol. If I told everyone the ""best"" settings then everyone would do that and it would no longer be the best. Experiment and see what works for you Where should I run the looter? Anywhere there is loot on the ground. Experiment. See whats making money. Known locations would be GE drop parties in highly populated worlds. PVP worlds in active areas (ge, lumbridge, varrock, etc). ZMI. Wintertodt. Skillers that drop their inventory like barbarian village fishers, rimmington mine iron ore droppers etc. It will even work in the party room to pop balloons GUI: CLI: Discord Server: POGRESS REPORTS:
    1 point
  9. thank you. repairing manually once a day isn't a huge dealbreaker but i like things to be afk lol happy to test when updated.
    1 point
  10. Currently no, i could potentially look at adding it though? Method? on it
    1 point
  11. i reported a bug in one that you can no longer buy on in shop but he fixed it and still supports the script.
    1 point
  12. Everyone take cover, Wacky Jacky is here to take over also when Wacky AIO Slayer?
    1 point
  13. @Czar Can you please remove the chicken on the top floor of Draynor Manor from the list of fightable monsters? If you start the script in Falador and select "Chicken", you will walk to the top floor of Draynor Manor and try to fight the scientist's chicken
    1 point
  14. yessir has 100+ pots of extended anti fire 4
    1 point
  15. Purchased a week or so ago, used on three accounts with breaks and 8ish hours a day.. lantern on one char with 80+rc, needle on an ironman with 53RC No issues.. can confidently leave it on and go to work or out for the night!
    1 point
  16. Purchased, runs flawlessly as I said in the trial. 10/10.
    1 point
  17. Not sure if I'm allowed to link stuff but you can check out Fushigi's work through his website. He's got it linked in his signature @FushigiBot
    1 point
  18. will this support the 2 tick method that involves clicking run energy then the target?
    1 point
  19. back to doing this again after repairing barrows armor :/
    1 point
  20. Very neat script. Works great. Two suggestions: - Breaking system - GE restocking/selling system. Cheers!
    1 point
  21. @Czarbest scripts ever !
    1 point
×
×
  • Create New...