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. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
    1 point
  16. PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.
    1 point
  17. 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
  18. Can't wait for the update, So hungry! need to eat!
    1 point
  19. Welcome, please stop spamming!
    1 point
  20. 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
  21. 1 point
  22. you're getting up there bigboy
    1 point
  23. SANTA HATES THE POOR, THE JEWS, AND THE MUSLIMS. SADLY I'M ONE OF THOSE. Edit: just joking man, Gz
    1 point
  24. Same here, it can't pass some doors in security of stronghold either.
    1 point
  25. Looking good, GL selling those accs!
    1 point
  26. idk if this is in it but walking to slayer stronghold by using tree tele would be cool
    1 point
  27. Looks like the update is still pending Apologies to everyone for the inconvenience There is no doubt that the script will be updated today though ^^
    1 point
  28. 1 point
  29. 1 point
  30. i would like a trial please, kind regards
    1 point
  31. Greendragon (Graveyard) I think u should add it would move to middle of the dragons when it wont find any other dragons... because sometime when it moves away from center of the dragons it will only att 1 that spawns there...
    1 point
  32. Happy Holidays and congratulations!
    1 point
  33. When will this script be released? i really want to test this!
    1 point
  34. oh awesome cheers, sorry I should have read up the thread haha. Thanks.
    1 point
  35. hello project, any chance i could get a trial? also merry xmas
    1 point
  36. Posting to confirm both you guys got trials.
    1 point
  37. Description: Deliver gold every day during a set amount of hours in a live chat Current Workers: @Isolate @Gleets @Madz @Xylate Requirements Must be trusted (I can deny anyone that doesn't meet my requirements) Must present government issued ID or Drivers License Pay Pay is commission based Hours Needed None If you meet these requirements and are interest PM me or add my skype: iminjured15
    1 point
  38. Mind if I get a trial?
    1 point
  39. 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
  40. @@Felix Excellent work! Looks like you spend a lot of time on your designs. Keep it up!
    1 point
  41. Hey all, I'm thinking of making quest bots and started off with Restless Ghost, cause I think it's hard to find one. I'm doing this because i want to share this script with you and to get some advice/suggestions from more experienced scripters. DOWNLOAD LINK: Wouldn't mind if someone could give any suggestions for the code. Any advice will be greatly appreciated. Credits to Aiban for telling me about the configs. Made everything less messy.
    1 point
  42. No, no it isn't. Not at all. Shared exp is never the most efficient way, it would be one of the least efficient methods to train. The most efficient way to train would be like this Train your strength up to a maximum hit, go up one level so that maximum hit carries over to non-aggressive attack styles (aka non-strength training modes) and then train attack up to the same level as your strength. Repeat the process. Once you get to the max hit for whatever weapon you're training with (usually 96-98 str (only some are 99 like the abyssal whip)), then you prioritize attack to 99 and then go back to defence to train from 1. That is the fastest way to train to max melee. If you're saying efficient as in how much you spend to get the stats, then you would do what I said above, however you would then level your defence to 70 after getting roughly 75-80 attack and strength. Then get some actual gear and then keep going with what I said above. Defence is always left to last for the most efficient training methods.
    1 point
Γ—
Γ—
  • Create New...