Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/25/16 in Posts

  1. Hello Osbotters! Since today is Christmas, I'll be doing something special for you all. I'm going to give away some monthly trials for any of my scripts. What do we have to do? All you have to do is leave a post below and like this topic, multiple post are allowed!! In several hours (will be random) the topic will be closed and I'll generate 5 random numbers between 1 and the amount of posts on this topic. I'll announce the winners asap. What can we win?! You can win 5 trials of 31 days on any script that I own. You can find all my scripts on the link below: http://osbot.org/forum/topic/66292-khal-scripts-trial-topic-%E2%96%90-next-level-botting%E2%96%90-very-dedicated-scipter%E2%96%90-request-your-free-trials-now/ Goodluck to you all and have a Merry Christmas! Khaleesi
    26 points
  2. Dear Community, I've lowered the price on Sponsor + lifetime sponsor until the end of December, once we roll the new year in the prices will return to normal!! Sponsor for 6 months = $45.99 http://osbot.org/forum/store/product/5-sponsor/ Lifetime Sponsor = $100.00 http://osbot.org/forum/store/product/291-lifetime-sponsor/ Thanks, OSBot Staff
    5 points
  3. You're just as retarded as he is, you both scammed cause you both got salty and you both let your pubescent feelings take action. Don't expect to come back anytime soon buddy.
    5 points
  4. How can I justify giving you $100.00 donor if you donated any lower than $100.00?
    4 points
  5. Mio ruined this community - was great until that specimen who doesnt bot, doesnt script, doesnt farm, doesnt even know anything about RS became a Forum moderator here on a RS related bot site lmao
    3 points
  6. 10k posts ... Oh God Don't forget to participate in the script giveaway! http://osbot.org/forum/topic/112685-%E2%AD%90khal-scripts-giveaway-%E2%AD%90-christmas-special/
    3 points
  7. @FusionRS Check your messages bro Sent you a voucher Happy holidays
    3 points
  8. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Account builder mode to level your firemaking to level 50 or even higher. - Equips pyromancer gear option - Chopping and burning logs (base Option) - Relights brazier - Fletch option - Fix brazier option - Make potion and heal pyromancer when down option - Tons of food supported - Brazier swicthing when pyromancer is down - Advanced game settings to skip games, smart caluclate points, afk at certain points, ... - Bank or Open crates - Dragon axe special attack - Fletch at brazier option - Chop in safespot option - Worldhopping - 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 909: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 managers you do not need to specify -script 909): -script 909:TaskList1.4515breaks (With breaks) -script 909:TaskList1.4515breaks.discord1 (With breaks & discord) -script 909:TaskList1..discord1 (NO breaks & discord) Proggies:
    2 points
  9. Molly's Chaos Druids This script fights chaos druids in Taverly dungeon, Edgeville dungeon and Ardougne. Profits can easily exceed 200k p/h and 60k combat exp/ph, this is a great method for training low level accounts and pures. Buy HERE Like this post and then post on this thread requesting a 24hr trial. When I have given you a trial I will like your post so you will receive a notification letting you know you got a trial. Requirements - 46 Thieving for Ardougne -82 Thieving and a Lockpick for Yanille - 5 Agility for Taverly(recommended) - No other requirements! Though I do recommend combat stats of 20+ as a minimum Features: - Supports eating any food - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge), includes re-equipping items on death - Potion support - Automatically detects and withdraws/uses Falador teleport tabs if using Taverly dungeon - Automatically detects and withdraws/equips/uses glories if using Edgeville dungeon - Supports looting bag Setup: Start the script, fill out the GUI, and be in the general area of where you want to run the script. CLI setup: Proggies: In the works: Known bugs: Bug report form, this is a MUST for problems to be resolved quickly: Description of bug(where, what, when, why): Log: Your settings: Mirror mode: Y/N
    2 points
  10. Temsei's dough maker Information With this script you can make pastry dough, bread dough and pizza bases out of flour. While the script can be an excellent money maker, the market for these ingredients isn't huge so you should be keeping a close eye on your items market if you're planning to use the bot in larger amounts. Requirements Making dough has no skill requirements, start the script in a bank with pots of flour and jugs of water in your bank and you're good to go! Images If you run into any issues with the script or have any suggestions, please make a post about them! Proggies are also much appreciated. Download https://drive.google.com/open?id=0B5zfq4J918uyaWRXbk9CWHM1T3c Save the .jar file in "C:\Users\YourUsername\OSBot\Scripts" and refresh your scripts in the osbot client. Enjoy! Made a lot of GP with the script? Want to give a little something back? While donations obviously aren't any kind of necessity, they definitely will motivate me to create more scripts for the public. If you wish to make a donation, please follow the paypal donate link below or PM me if you want to donate RSGP. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y26BKQUXZRBTY
    2 points
  11. Presenting you easy generic SAVE/LOAD implementation, feel free to use : (some of the Load and Save class implementations are copypasted from help section) Save Class: import java.io.*; import java.util.Base64; public class Save { private PrintWriter pw; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Save(String localName) { try { pw = new PrintWriter(localDir + localName + ".ini"); System.out.println(pw.toString() + "\n" + localDir); } catch (FileNotFoundException e) { e.printStackTrace(); } } public boolean writeString(String s) { pw.println(s); pw.close(); return true; } public boolean writeObject(Serializable o) throws IOException { writeString(toString(o)); System.out.println(toString(o)); return true; } private static String toString(Serializable o) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(baos); oos.writeObject(o); oos.close(); return Base64.getEncoder().encodeToString(baos.toByteArray()); } } Load class: import java.io.*; import java.nio.charset.Charset; import java.util.Base64; public class Load { private BufferedReader br; private InputStream fis; private InputStreamReader isr; private boolean finished = false; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Load(String localName) { try { fis = new FileInputStream(localDir + localName + ".ini"); isr = new InputStreamReader(fis, Charset.forName("UTF-8")); br = new BufferedReader(isr); } catch (FileNotFoundException e) { e.printStackTrace(); } } public String readLine() throws IOException { String line = null; if (!finished) { line = br.readLine(); if (line == null) finished = true; } else { if (br != null) { br.close(); fis.close(); isr.close(); br = null; } } return line; } public Object readObject() throws IOException, ClassNotFoundException { return fromString(readLine()); } private static Object fromString( String s ) throws IOException , ClassNotFoundException { byte [] data = Base64.getDecoder().decode( s ); ObjectInputStream ois = new ObjectInputStream( new ByteArrayInputStream( data ) ); Object o = ois.readObject(); ois.close(); return o; } } How it works? FOR SAVING All you have to do is create a Save class that you are going to use: Save save = new Save("Filename"); And saving class that contains information about your bot: //make sure that your Properties class implements "Serializable" Properties propertiesofBot = new Properties("My properties class"); save.writeObject(propertiesofBot); FOR LOADING: //Make sure you create Load class with same name as the Save class Load load = new Load("Filename"); And all you need to do is load and save the class to the variable Properties properties = (Properties) load.readObject(); Saving or loading classes that differ is not supported. Hope this helps!
    2 points
  12. @nicksep are you fucking retarded? go back to your moms nipple.
    2 points
  13. he runs a service with 10 other people in it lmao,randy kids who know nothing le0le0le0
    2 points
  14. Ran out of forum likes for today Thanks everyone for the script feedback I will be working on the next update immediately and will be adding all suggestions/bugfixes/tweaks for the next version. The eating bugfix (v164) update should 100% most definitely be live today, once again apologies everyone for the inconvenience
    2 points
  15. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports all rooftops (Draynor, Al-Kharid, Varrock, Canafis, Falador, Seers, Polivneach, Relekka, Ardougne) - Supports most courses (Gnome stronghold, Shayzien basic, Barbarian stronghold, Ape toll, Varlamore basic, Wilderness (Legacy), Varlamore advanced, Werewolf, Priffddinas) - Supports Agility pyramid - All food + option to choose when to eat - (Super) Energy potions + Stamina potions support - Progressive course/rooftop option - Waterskin support - Option to loot and sell pyramid top - 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 463:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename DISCORDFILE= discordSettings 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 463'): -script 463:TaskList1.4515breaks (With breaks) -script 463:TaskList1.4515breaks.discord1 (With breaks & discord) -script 463:TaskList1..discord1 (NO breaks & discord, leave 2nd parameter empty) Proggies:
    1 point
  16. Stealth Builder Can also be purchased with OSRS gold using vouchers from here Features Automatically buys house if you don't have one Buys all required items from GE Restocks from GE when out of supplies Automatically switches items for best XP rates Builds all required rooms Hires and changes servants as it gains levels Builds beds and bell-pull for servants XP rates similar to human players Uses keyboard to select dialogue/construction interface options Instructions Set the desired level on the GUI and select one of the 2 modes available. The only difference between them is the fast mode will switch to Mahogany tables at 52, which is faster but more expensive. The script is designed to automate all tasks from fresh level 3 accounts, so it's recommended that you don't have a complex house layout with multiple floors. It's best to start the script at Grand Exchange, or in house if you already have the required supplies. Make sure you have enough money on the account for supplies. The script fetches supplies from the bank, does not use money pouch, therefore if manually setting up the bot inside the house, you should have a regular Saw (not crystal), regular Hammer, Coins and Teleport to house tabs CLI Features Script ID is 924. The script supports CLI startup with the following syntax: -script 924:parameter=value where at least the mode and target_level parameters must be specificed eg. -script 924:mode=normal;target_level=99;on_limit_break=true;take_breaks=true;min_break_frequency=50;max_break_frequency=100;min_break=20;max_break=150; List of parameters: mode=[true|false] target_level=[number] on_limit_stop=[true|false] on_limit_break=[true|false] take_breaks=[true|false] min_break=[number] max_break=[number] min_break_frequency=[number] max_break_frequency=[number] afk_sessions=[true|false] min_afk_frequency=[number] max_afk_frequency=[number] min_afk_duration=[number] max_afk_duration=[number] hop_worlds=[true|false] min_hop_frequency=[number] max_hop_frequency=[number] Bug Report Template 1. Stealth Injection or Mirror Mode: 2. Logger contents (press "Settings" on top right corner of the client, then "Toggle Logger", copy & paste on pastebin) : 3. Description:
    1 point
  17. Current version: V1.4.2 What is this? - This program uses cli to easily and automatically start your bots without having to type in anything once it's configured. How do i use this? - I've created a few gifs to show you how to use this program. Don't know how to/Don't want to use script parameters? - simply don't fill them in, and run it. It will boot up OSBot, login and start the script and bring up the script's GUI if it has one. If you don't fill in these fields, it will use the default value -Memory(mb) -Proxy(it will simply not use it if you dont fill in the fields) -debug port(default: 5005) note: You wont be able to run multiple clients on the same port. -Script parameters -Bot Pin Shortcuts -Double click: runs a script -Del: deletes 1 or more scripts Can i run multiple scripts at once? - Yes, select multiple scripts and press run NOTE: - If you run multiple scripts, be sure to not have them all use the same port number(for example 5005) - Creating a new script Running a script. Simply press the run button! OSBot updated? New OSBot jar? No problem! press edit and select the new jar Create and load presets Simply update ALL of your scripts with a new OSBot jar This application is FULLY OPEN SOURCE! feel free to look around and change things if you wish to do so Source: https://github.com/TehHeroOfTime/OSBOT-CLI-Script-creator Download: https://github.com/TehHeroOfTime/OSBOT-CLI-Script-creator/raw/master/Setup/Debug/Setup.msi changelog V1.2 Fixed an issue with reading a file that didnt exist V1.3 fixed spacing issues. local scripts can now contain spaces. V1.4 You are now able to mass-update all of your scripts with a new OSBot jar V1.4.1 Fixed a spacing issue for people with a space in their name, as that is now possible with the new forums V1.4.2 Added 3 new permissions. -Norandoms -NoInterface -NoRender DISCLAIMER: Since @Alek did not reply to my pm saying something is wrong, and the fact that he liked my post showing it, i assumed it is ok to release, Since there is an OSBot logo in the application. If this is not okay i will remove it immediately.
    1 point
  18. Mio ruined this community - was great until that specimen who doesnt bot, doesnt script, doesnt farm, doesnt even know anything about RS became a Forum moderator here on a RS related bot site lmao
    1 point
  19. Am updating these as I script the quests. Wasn't sure whether to put this here or in snippets so move it if it's in the wrong place pls. Tutorial Island Sheep Shearer Cook's Assistant Romeo and Juliet
    1 point
  20. I also had problem with the most western door to the high lvl flesh crawler and zombies, always stuck and i had to manually enter but every other door/path it took would work
    1 point
  21. Yes refunds are always possible The script will be updated today though, just waiting for the devs to add my latest update for the script, usually happens every 24 hours. In the meantime I will be giving free extended trials to my other scripts for all users EDIT: Script refunds are handled by the forum admin
    1 point
  22. 1 point
  23. Thats why it will never be popular cos no one deals with it or knows it.
    1 point
  24. SANTA HATES THE POOR, THE JEWS, AND THE MUSLIMS. SADLY I'M ONE OF THOSE. Edit: just joking man, Gz
    1 point
  25. Looking good, GL selling those accs!
    1 point
  26. Approx. 3 hours after your post and it's still not working.. Could I get a refund please?
    1 point
  27. contact the owner of the script.
    1 point
  28. 1 point
  29. i would like a trial please, kind regards
    1 point
  30. 100$ pp via what we talked about on skype
    1 point
  31. Happy Holidays and congratulations!
    1 point
  32. 1 point
  33. oh awesome cheers, sorry I should have read up the thread haha. Thanks.
    1 point
  34. i got 9.5m can could sell it for 9dollars pp
    1 point
  35. hello project, any chance i could get a trial? also merry xmas
    1 point
  36. Enjoy I'll take a look at it ^^
    1 point
  37. No worries my man, thank you for the reply x
    1 point
  38. true, mby add some other ranks, would love to have a green name (not the mod color obv) but something similair Suggestion: Supporter (2.99$ a month) gives adv free client and adv free forums (still 1 client restriction etc) and a Lifetime Supporter (25-50$) just a option
    1 point
  39. Well, I'm convinced you did scam and you scammed together with your friend, Inert. Here's why: Refused to provide evidence of Tiber asking you for your passwords even though it would have immediately cleared your reputation Refused to address the fact that you claim you didn't remove us on Skype and that Tiber knew your Skype too and logged in to frame you. Which wouldn't make sense because Tiber admitted it to you anyway so why would he care. Seems like you two were working together. Refused to address the fact that you changed your OSBot name to hide "Charlie", and then acted like you didn't know who "RSJackpot" was when I pm'd you. You thought since your name changed that I wouldn't know it was you? Refused to address the fact that you changed your OSBot name at the same time you left the Skype chat and deleted me on skype. Which basically means you were the one who removed us on skype, and why would you do so if you didn't scam? And if it wasn't you why didn't you add us back on skype and message us because we know for a fact you were on your computer at the time. And even if all of the above didn't happen, at a bare minimum you gave access to our account and our gold to someone else and then tried to do everything in your power to get out of it. You know for a fact we restocked the account and you know how much we usually restock, but you'll never admit it because you will do anything to keep as much of our stolen money as possible. What's not fair is the fact that we lost $150 on your account alone and you're only refunding about $62 worth of gold.
    1 point
  40. Question does it also feature the spin flax lunar spell? (lvl 76 ) if so i will buy it right now, easiest way to break even for 99 magic.
    1 point
  41. Mind if I get a trial?
    1 point
  42. Khal, this is one of the best scripts I have ever used, period!! I got 50 firemaking just for the mini-game, did 50-75 in one 8-9 hour session, then did 75-99 a couple days later all in one go! I would have a longer proggie for you, but the login handler glitched a few times and wouldn't log back in when the bot took a break. But anyway, thank you for such an awesome script and here are a few pics as well <333
    1 point
  43. @@Felix Excellent work! Looks like you spend a lot of time on your designs. Keep it up!
    1 point
  44. Its not 100% afk tho? You have to drink ovls and prayer pots ect active Power-ups ect. It is fairly AFK I know but this is for the extra lazy people like me :P
    1 point
Γ—
Γ—
  • Create New...