Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/21/16 in all areas

  1. http://osbot.org/forum/forum/335-web-walking-links/ Use this to suggest new links. There is a requirement of 50 post count, new topics and replies are moderated. If it's a non-link related web walking issue, continue using the forum parent, Client Bugs & Suggestions. Don't post without using the template.
    11 points
  2. IP Checker - As Requested By Users Download: http://download1503.mediafire.com/6datvo8lpfrg/dqkf65cp60j3atz/LoudIP.jar Source: Virus Scan:
    3 points
  3. 1. Deposit money to your bank account 2. Buying Btc 3. Buy gold.
    3 points
  4. You're telling me buying from some shitty shady blackmarket where half of the people steal your shit makes it a better experience ?
    3 points
  5. Haven't RS' servers been just as shit the past 3 days as the 3 days before?
    3 points
  6. 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
    2 points
  7. 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
  8. Don't worry, he is ip banned and I'll resign before I unban him.
    2 points
  9. Honestly, I don't think this will effect prices much. There's also a gold sink coming with the release of Last Man Standing. 2500k in total is taken from players as an entry fee and 2000k is given back in rewards. I can't see that affecting anything either, reason being there's still going to be a constant but ever-changing flow of money coming into the game. If there's one thing we've learned from RS3, it's that gold prices only go down.
    2 points
  10. Buying those supplies does not mean he uses them all. Were they all gone? Since he never asked you if he could buy the archers ring he'll have to reimburse you for the loss you made on that. Also, he refunded you the order before so technically the order was cancelled and restarted when the rescheduling was done and he has 24 hours from then to complete it according to his TOS.
    2 points
  11. Both right. We can't really win, but we can try, right? Essentially the vast majority of the human race are scum and need vaporising. The irony is as follows; Trying to get rid of scammers on Osbot is as prolific as trying to get rid of bots on Runescape. That's going in my signature.
    2 points
  12. But what about the people that buy Sponsor then put [sponsor] in their threads?
    2 points
  13. Please do so Genuinely just asking because I haven't logged in 3 days. I'm not defending anyone. Chill ;)Appriciate all the pocket change everyone is giving out on this dispute but lets focus on the people actually involved
    2 points
  14. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Supports banking at 99% of the locations - Task based setup (1-99) - Supports every fish (Shrimps, sardine, herring, anchovies, mackerel, trout, cod, pike,salmon, tuna, lobster, bass, Leaping trout/salmon/sturgeon, swordfish, monkfish, shark, dark crab, angler fish, sacred eel, infernal eel) - Supports almost every bank location (New ones can be requested) (Lumbridge swamp, Al-Kharid Sea, Draynor, Lumbrdige river, barbarian village, shilo village, Catherby, corsair cove, fishing guild, piscatoris, port piscarilius, karamja, jatizso, seers, gnome stronghold, Lands' end, Zul andra, Mor Ul rek) - Fish & bank (Preset) - Fish & bank (Custom) supports almost every location - Fish & Drop (Custom) supports every fishing spot - Barbarian fishing (Select leaping fish at fish & drop) - Cook fish when fire is nearby (Fish & Drop Only) - Minnows support - Karambwans + Karambwanji support - Aerial fishing support - Drift net fishing support - Humanlike idles - Dragon harpoon special - Barehand fishing option - Fishing barrel support - Spirit flakes support - Drop clue bottles support - 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 571: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 571): -script 571:TaskList1.4515breaks (With breaks) -script 571:TaskList1.4515breaks.discord1 (With breaks & discord) -script 571:TaskList1..discord1 (NO breaks & discord) Proggies:
    1 point
  15. 1 point
  16. About: Definitely not the most efficient way nor the cleanest but if you are looking for a quick snippet to introduce audio into your scripts rapidly well here you go. Example: public static void main(String args[]) { final Sound s = new Sound("C:/x/y/z/Korg-MS2000-DirtBass-C2.wav"); s.play(); try { Thread.sleep(5000); } catch (final InterruptedException e) { e.printStackTrace(); } s.play(); } Code: public final class Sound { private final File soundFile; public Sound(final File soundFile) { this.soundFile = soundFile; } public Sound(final String soundFilePath) { this(new File(soundFilePath)); } public final void play() { new PlayThread().start(); } private class PlayThread extends Thread { byte buffer[] = new byte[10000]; public void run() { try { final AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(soundFile); final AudioFormat audioFormat = audioInputStream.getFormat(); final DataLine.Info dataLineInfo = new DataLine.Info(SourceDataLine.class, audioFormat); final SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(dataLineInfo); sourceDataLine.open(audioFormat); sourceDataLine.start(); int count; while ((count = audioInputStream.read(buffer, 0, buffer.length)) != -1) { if (count > 0) { sourceDataLine.write(buffer, 0, count); } } sourceDataLine.drain(); sourceDataLine.close(); } catch (final Exception e) { e.printStackTrace(); } } } }
    1 point
  17. hey can I get a trial for your fisher please? Thanks
    1 point
  18. >make account just to h8 Thought we are supposed to be best community
    1 point
  19. shit setup + taskbar on the side
    1 point
  20. lol, you are so lucky.. i would receive a warning point for doing that..
    1 point
  21. Got from 1-81 in one run without getting banned then i sold the acc! Recommended
    1 point
  22. *Wild JMod Appeared* Wub Wub Wub
    1 point
  23. never mind everything works fine, great script! +++
    1 point
  24. @deceiver ofc
    1 point
  25. Sadly nobody can ensure whether a user is smart enough to decide for himself who's trustworthy and who isn't. The best solution one can offer is to minimise the risk of said potentially stupid user having the option to trade with said potentially untrustworthy user.
    1 point
  26. It should automatically eat the food in your inventory. Set it up so that it'll get food from the bank as well.
    1 point
  27. v25.0 is live and banking is working a treat now. Thanks. Purchased the script today!
    1 point
  28. Honestly? It's just too much for me. All the MTX, new skills etc. I like the nostalgia from OSRS as well.
    1 point
  29. That's different though, because its still some one training on it. Unlike paying real money and getting levels super quickly. They keep adding new tier wep's and armor that make everything below it worthless. It's only kind of fun if you like PVM, but pking is garbage and boring and empty.
    1 point
  30. Its shit because you can buy your 99's with real money.
    1 point
  31. Rock/sand crabs are different to normal fighting, there is a menu at the top of the setup window 'Plugins', use those for rock/sand crabs, otherwise the script will not launch at all good luck EDIT: guys, an update from admins is coming within 3-4 hours , v119 will be live very soon ^^ also guys, I really appreciate the support and feedback and progress reports
    1 point
  32. The script logs out every time I try to make it train on rock crabs. Is this supported yet? It said it was on the original post which is why I bought (for flexibility) but I am mostly going to use it for rock crabs.
    1 point
  33. range with iron knives on 1 def pure check my thread for progress
    1 point
  34. Ah of course. Could you put a note in the GUI so that users know to have HAM robes? It seems like common sense from your perspective, but it would keep someone from getting banned. I'll try the third walking option on the silk stall thiever!
    1 point
  35. Hi sir, can I have a trial please?
    1 point
  36. Hey, may I try out a free trial? (I've purchased perfect rock crabs, one of your scripts)
    1 point
  37. 1 point
  38. what exactly is anti-pattern mode? just bought the script. i want that on right? also what does ' stay in my postion' do exactly? thanks!
    1 point
  39. Just build a wall in front of the screen kek
    1 point
  40. There is a pending update, so trials are now 48hr instead of 24hr New update: v118 - Added a fix for b2p mode - Added grand tree bank - Added a fix for chaos druids and walking system - Added logout on death option - Added logout when out of food - No longer fights dmm guards - Added tasks for plugins - Added a fix for rock/sand crabs , refreshing update will be live within 24 hours (should be much sooner), good luck everyone ;)
    1 point
  41. Glad the script works on mac, I will start on adding new updates/features now ^^ Edit: added 24h trial
    1 point
×
×
  • Create New...