Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/28/23 in Posts

  1. You can start then from a bat file or from cmd line: java -jar "OSBot.jar" -login <OSBotUSername>:<OSBotPassword> -bot <BotUsername>:<BotPassword>:<bankpin> -world <woldnumber> - Change the <placeholder> with the correct info. - make sure "OSBot.jar" is the right name of the osbot jar, if it's in a differnt location than the bat file or where you start it from in cmd, you need to provide the file file path. - World is optional - Tons more optional things you can add More info can be found here:
    2 points
  2. 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
  3. 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
  4. ** $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
  5. Complete minnows account builder! Starts at level 1 fishing and completes every requirement to fish minnows! $12.99 for LIFETIME access! Click HERE to purchase! Comment and like this thread for a FREE 24 hour trial! [Main Features] Progressively levels fishing 1-82 Supports 23 fishing locations Plays the Fishing Trawler mini game Completes the Fishing Contest quest Supports small net fishing Supports fly fishing Supports barbarian fishing Supports minnow fishing Gets equipment from the bank for each new task Supports ge restocking Supports F2P mode What does it do? - Levels fishing 1-20 at small net fishing spots - Plays the Fishing Trawler mini game until you have the angler outfit - Levels fishing 1-48 at fly fishing spots - Continues fishing from 48-82 at fly fishing spots, or barbarian fishing spots - Completes the Fishing Contest quest - Fishes for minnows at the fishing platform (F2P mode will only level fishing using small net, and fly fishing spots) (TIP) You can re-open the GUI by pressing F2! Required Supplies You must have these supplies in your bank for the script to run every task progressively Fishing Gear - Small fishing net - Fly fishing rod and Feathers Fishing Trawler - Swamp paste Fishing Contest - Spade - 10 coins GE Restocking - Coins, a decent amount (Depends on what supplies you already have) CLI Progress Reports
    1 point
  6. Oh you're using a boolean, it's value is not being rechecked. You're basically just sending false the whole time. Use something like BooleanSupplier
    1 point
  7. Official scripts on the SDN are maintained and get removed if not. just check last page of comments to see what people are saying on it
    1 point
  8. Alraight, so if they are in the "Script list" on here they are updated beyond the upload date?
    1 point
  9. Good work, should be helpful to many people Also nice to see more scripters ^^ A quick heads up though, it's useful to try Filter<Worlds> to filter out worlds, it's possible to exclude speedrunning worlds this way too: Filter<World> worldFilter = a -> !a.isFull() && a.isMembers() && !a.isHighRisk() && !a.isPvpWorld() && a.getActivity() != null && !getHoppedWorlds().contains(a.getId()) && !a.getActivity().contains("kill t") && !a.getActivity().contains("eedrun") && !a.getActivity().contains("arget") && a.getId() != getContext().getWorlds().getCurrentWorld(); and then match them with getWorlds().getAvailableWorlds(true).stream().filter(worldFilter::match) to find the result E.g. this is what I use in my prayer bot to hop to safe world when doing chaos altar bones. It avoids skill total worlds, target worlds pvp worlds etc. you could easily modify this to suit your needs
    1 point
  10. I didn't test your method, but immediately I see there's a chance to throw an array out of bounds exception (not providing array.length - 1 on indexing). Here's a more condensed implementation that might help: static final int[] fWorlds = { 1, 8, 16, ... }; static final int[] mWorlds = { 2, 3, 4, ... }; public static void hopRand() { final int[] hWorlds = getWorlds().isMembersWorld() ? mWorlds : fWorlds; if (!getWorlds().hop(300 + hWorlds[random(0, hWorlds.length - 1)])) { hopRand(); } }
    1 point
  11. Hello could i get a trial?
    1 point
  12. Gave you both trials, Enjoy!
    1 point
  13. SOTF script incoming? Was looking around for one but couldn't find one.
    1 point
  14. I can't help you in terms of optimal settings because I don't farm myself, I'm afraid. This also means that any specifics pertaining which runes to use, level requirements, etc, you'd have to do some googling there. The script does all the 4 rooms though, once it has acquired all the needed points for a given room, it'll move to the next one.
    1 point
  15. lmao! gonna try it again today
    1 point
  16. thank you i brought this one after the trial its great
    1 point
  17. seems to be working well. any suggestions on what to fill in the settings for better gp\h results? also witch runes I need in the bank to make all rooms? I see that it is only preforming tele grab room. suggestions?
    1 point
  18. How much gp is this an hour on say account with 75 mage/50 Range Trident and 43Prayer trying to setup like 50 accounts
    1 point
  19. Yeah, quotes and dummy parameter did the trick. thanks!
    1 point
  20. I don't see it as an option
    1 point
  21. 1 point
  22. Hey where in the scripts tab can I purchase this? I can't find it!
    1 point
  23. Hey there, bans are unusual these days, I highly recommend enabling new mouse, using stealth injection, selecting a few behaviour options for anti-ban in the setup window, and taking a few breaks per hour for the best way to prevent bans in 2022 Also for proggy thanks, added to main thread Keep it up dude I hope to see more progress from you That was a nice 16 hr run there
    1 point
  24. 0 points
Γ—
Γ—
  • Create New...