Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/18/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
    5 points
  2. Chikan's Varock West Smither GUI Features: Requirements: None, just start with a hammer in your inventory. Updates: v1.1 - Fixed some logic involving banking to make it more responsive v1.2 - Fixed a bug involving the script being stuck on a loop when the user ran out of materials, and also removed the make-X option and added make all in its place. Also I cleaned up the paint a little bit and added a display for xp gained. Download: --TBA-- Will give testers a .jar to use until the script is eligeble for SDN Teaser: Proggies:
    3 points
  3. Test case: logger.debug(formatRSUnit(559546000000l)); // 559.54B logger.debug(formatRSUnit(19546000000l)); // 19.54B logger.debug(formatRSUnit(1954600000l)); // 1.95B logger.debug(formatRSUnit(155400000l)); // 155.4M logger.debug(formatRSUnit(70000000l)); // 70.0M logger.debug(formatRSUnit(5400000l)); // 5.40M logger.debug(formatRSUnit(450000l)); // 450.0K logger.debug(formatRSUnit(12000l)); // 12.0K logger.debug(formatRSUnit(8000l)); // 8.0K logger.debug(formatRSUnit(600l)); // 600 logger.debug(formatRSUnit(50l)); // 50 logger.debug(formatRSUnit(2l)); // 2 Source code: private static final DecimalFormat UNIT_FORMAT = new DecimalFormat(".0#"); /** * @author Explv (https://osbot.org/forum/profile/192661-explv/) * @author LiveRare (https://osbot.org/forum/profile/23977-liverare/) * * @param value * - An amount * @return Formatted RS unit */ public static String formatRSUnit(final long value) { String suffix; double convertedValue; if (value >= 1_000_000_000) { convertedValue = ((double) value / 1_000_000_000); suffix = "B"; } else if (value >= 1_000_000) { convertedValue = ((double) value / 1_000_000); suffix = "M"; } else if (value >= 1000) { convertedValue = ((double) value / 1000); suffix = "K"; } else { return String.valueOf(value); } convertedValue = Math.floor(convertedValue * 100) / 100; return UNIT_FORMAT.format(convertedValue) + suffix; } I think I've over-complicated something here. If I have, please tell me how.
    3 points
  4. No Edit: btw this is the scripting help section, it is for questions regarding the process of developing scripts, not for finding people to write you one. If you want someone to fix it, expect to pay, and post in the appropriate section
    3 points
  5. Aww thank you for them mention. Would have taken this but currently doing another service.
    2 points
  6. The user has been banned as they are also a ban evader, thanks for the report! Friendly reminder to ALL users to always ask for an OSBot PM and use a middleman!
    2 points
  7. public String runescapeFormat(long l) { String[] suffix = new String[] { "K", "M", "B", "T" }; int size = (l != 0) ? (int) Math.log10(l) : 0; if (size >= 3) while (size % 3 != 0) size = size - 1; return (size >= 3) ? + (Math.round((l / Math.pow(10, size)) * 10) / 10d) + suffix[(size / 3) - 1] : + l + ""; } ...But yours is a lot more readable!!
    2 points
  8. The only Runecrafting bot you will need Purchase this INSANE bot here You can setup a master account (preferably your main account, can be any account) and a worker account (a throwaway bot account, or any account) will trade the master account and go to bank to get more runes etc. The main account (master) does not need to bot, and can be achieved through the normal RS client without a bot client. Supports: Air runes (1) (normal) & (abyss) Mind runes (2) (normal) & (abyss) Water runes (5) (normal) & (abyss) Earth runes (9) (normal) & (abyss) Mud runes (13) (earth altar) Lava runes (23) (fire altar) Fire runes (14) (normal) & (abyss) Body runes (20) (normal) & (abyss) Cosmic runes (27) (normal) & (abyss) Chaos runes (35) (normal) & (abyss) Astral runes (40) (normal) & (abyss) Nature runes (44) (normal) & (abyss) Law runes (54) (normal) & (abyss) Blood runes (abyss) & (zeah) Auto Arceuus Favour Solver Gets 100% arceuus favour for you Auto GE Restocking Sells runes, buys more supplies automatically Auto-equips chosen armour/robes Use Blood Essences Death Handler gets items from Death's office and repeats (Abyss) Glory mode, ferox mode, house spell/tabs Avoids pkers and hops worlds Uses mouse invokes for quicker runecrafting (stealth) Muling (BETA) will give money to your mules every X hours or profit Creates colossal pouch if you have the needle Results and screenshots
    1 point
  9. Setup Screens Smithing Mode Results & Show-off
    1 point
  10. CURRENT RECORD: 201 HOURS RUNTIME NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:
    1 point
  11. I'm currently not interested in adding the Pharaoh's sceptre's teleport as an available option Same applies for the banking in Sophanem itself. The demand is currently not high enough.
    1 point
  12. My boy@Krysler is doing this for me without 43 prayer. Legend! Thanks for all your offers!
    1 point
  13. I'll push an update in a moment, it was supposed to take 3 EDIT: you can leave the inventory containing 6 logs, rune, camelot teleport & as many stamina potions as you want (or none), set a gear preset containing spell and run it in debug mode until the SDN update
    1 point
  14. Not easily, but I will make it stop if you die. That should be a fail safe though; since it should never die. Something must have happened to your bot process perhaps; because I've done very rugged testing of the healing system and low hp failsafe system - this is the first report of a death that i've had all year!
    1 point
  15. hey token, you're script is one of the only ones i've encounterd. That's runs 99% smooth except for some weird variables. i was wondering, do you do private scripts? ps. any chance you could get 'the grand tree' in their aswell? :p
    1 point
  16. After using the trial I fell in love with this boy lol. I am definitely going to be buying. Thank you for the great work I look forward to using your other scripts.
    1 point
  17. Ok well, if you don't want to round then you can just do Math.floor(doubleValue * 100) / 100 to get the value to 2dp To achieve your super weird format you can use the Java class "DecimalFormat" with the format ".0#" # is an optional value (if it is 0 it won't be displayed), 0 is a digit public static String formatValue(final long value) { String suffix; double convertedValue; if (value >= 1_000_000_000) { convertedValue = ((double) value / 1_000_000_000); suffix = "b"; } else if (value >= 1_000_000) { convertedValue = ((double) value / 1_000_000); suffix = "m"; } else if (value >= 1000) { convertedValue = ((double) value / 1000); suffix = "k"; } else { return String.valueOf(value); } convertedValue = Math.floor(convertedValue * 100) / 100; return new DecimalFormat(".0#").format(convertedValue) + suffix; } Test cases: assert formatValue(559546000000L).equals("559.54b"); assert formatValue(19546000000L).equals("19.54b"); assert formatValue(1954600000L).equals("1.95b"); assert formatValue(155400000L).equals("155.4m"); assert formatValue(70000000L).equals("70.0m"); assert formatValue(5400000L).equals("5.4m"); assert formatValue(450000L).equals("450.0k"); assert formatValue(12000L).equals("12.0k"); assert formatValue(8000L).equals("8.0k"); assert formatValue(600L).equals("600"); assert formatValue(50L).equals("50"); assert formatValue(2L).equals("2");
    1 point
  18. 1 point
  19. Cant wait till I get the sales on my gold so I can pick this up. Its the next step in my botting to max.
    1 point
  20. Great release bro ! gl in the future
    1 point
  21. i like your name chikan, nice release
    1 point
  22. 1 point
  23. P o g c h a m p o m g a c h h c a g m o p m a h c g o P congrats on release.
    1 point
  24. Please take a look at all the scripts currently on SDN and remove the ones which aren't being updated at all by the script writer. It's unfair that customers are buying these scripts and they are not working at all, people are waiting weeks for trials, and other script writers may not be willing to bring out a quality script of the same purpose because of the competition.
    1 point
  25. Hello, Looking to go premium, could I get a trial first? Thanks!
    1 point
  26. good script, got me full void fairly easily
    1 point
  27. New updates are going well! Doing some testing now
    1 point
  28. Does anyone know if barricade repair is working well on this? Will buy if it is
    1 point
  29. Missed the trial if I was given it. I'm looking at Pest control to run on 2 of my low levs all the way to max stats at pc for a random account build so need a decent script so want to trial pest control. Already have 3 other scripts and your magic does kick ass (except alching) so sure it's fine but could I trial pest control please? Thanks.
    1 point
  30. thanks guys, really appreciate it
    1 point
×
×
  • Create New...