Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/06/19 in all areas

  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
    2 points
  2. Recovered testing account. User will not be unbanned even if refunds given.
    2 points
  3. I have some poorly written code that does this: https://github.com/Explv/osbot_manager/blob/master/osbot_manager/src/bot_parameters/configuration/Configuration.java#L347 Basically you will need to start the client, find it's PID, then when you want to close the client call taskkill with that PID. Java 9 has a nice process API that allows you to do this more easily, but unfortunately we're stuck with 8 for now
    2 points
  4. What exactly are you trying to get from the dispute? From what we've seen D Bolter acted in a professional manner and did his best to resolve this even offering replacements in the mean time.
    2 points
  5. wow u botted and got banned.. .damn dude...
    2 points
  6. Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
    1 point
  7. ────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - £3,99 | Chest Thiever - £2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌡ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌡ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.
    1 point
  8. Private scripts available if interested. Have questions? For fast support and latest updates, join the Discord!  https://discord.gg/pub3PEJ Script will fish anywhere and will automatically find the closest bank and bank. There is also an option to powerfish. How to set the script up: You must start at the fishing spot. It grabs the fishing spot's area by creating 10 squares in every direction from your player. For best results, start in the center of where the fishing spots occur. It will automatically detect the closest bank for you. You detect the Name and Action by hovering the spot and it will show you. Typing is cap sensitive. Name: This is where you type the name of the fishing spot. Action: This is where you type the exact name of the action to fish. ex) To catch shrimp, you would type "Net". "1st - When you HOVER ON THE SPOT - What is the name? Is it Fishing spot? CAP SENSITIVE 2nd - what are you using? Cap sensitive - Small Net? Ok thats 2" GUI Proggie My lvl 3 fisher I made using this bot
    1 point
  9. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
    1 point
  10. Looking to buy a main from someone trusted for testing osbot on. Please post here picture of stats and info.
    1 point
  11. It is I, paper. king of the xeon processors. I hold 50% shares in the kebab buying industry @SuperMario if you are still around buddy we can once again take over runescape and this entire website.
    1 point
  12. Use a ConditionalSleep, it's exactly what they're for. The following snippet means "Sleep for 3 seconds, or until condition() returns true, where condition() is checked every 600ms" new ConditionalSleep(3000, 600) { @Override public boolean condition() { RS2Widget widget = getWidgets().getWidgetContainingText( 558, "Sorry, this display name is not available", "Great! This display is available" ); return widget != null && widget.isVisible(); } }.sleep(); I already have a solution for the display name setter, if you would like to take a look. It just types some random String into the box, and then select one of the suggestions https://github.com/Explv/Tutorial-Island/blob/master/src/sections/RuneScapeGuideSection.java#L82
    1 point
  13. Best way to do this without freezing the whole script when it fails is this: package mac; public interface Condition { boolean evaluate(); } public boolean waitUntil(Condition c, int interval, int tries) throws InterruptedException { while (!c.evaluate()) { sleep(interval); if (tries == 0) return false; tries--; } return true; } and then to use these waitUntil(() -> widget.isVisible(), 200, 50); if(!widget.isVisible()) return; //or whatever //then here your amazing code Which will try to see if the widget is visible every 200ms and try 50 times.
    1 point
  14. Hey, pm me if you still need. skype / dc is down below
    1 point
  15. Oh okay Just wanted to know ^^ Love your scripts!
    1 point
  16. He wants to test osbot using the account which means there's a chance of it getting banned. I think that's why he'd prefer to buy the account rather than rent or borrow While I'm here, and very off topic, what does the maldesto emoji stand for on osbot?
    1 point
  17. Dude your scripts are suBLIME dude! Love the AIO
    1 point
  18. inboxes with review - need help
    1 point
  19. Ah, interesting. I'll do a test run with that setup today and see if there is something different about this weapon which would cause the current code not to work. Thanks! Apa
    1 point
  20. I tried that.. but it just returns to ge to buy the same exact raw chompys for way below ge price
    1 point
  21. Nvm, it works after i've removed the black cape from the gear preset.
    1 point
  22. New Update (v97) - Walking to altars task - improved: bot now walks to altars better - (Lavas) Earth runes are now withdrawn if user hasn't already set it up. - (Ourania) altar staminas patched - (Ourania) banking procedure (choose runes) patched - (Abyss) deathwalking update: bot will now grab all - (Abyss) auto-repair at X interval added: bot will now continuously repair pouches at the mage every X trips to prevent them from degrading needs further testing - (Abyss) food amount default set to: 2 Update will automatically go live within 24 hours, good luck guys As for karamja, yes the bot does un-note in the general store if you have selected the option in the setup window. As for master/worker accounts, I haven't heard of any bans since you are not botting on your main, however if you are concerned, try a test run on a less important account accepting all the runes, see how it goes Activated all trials good luck everyone
    1 point
  23. Thank you for the report, will see what i can find out I pushed an update a while back to solve this, and i believe i have seen this mentioned in the script discord channel with a potential fix being added to the web walker. will see if i can tweak my own implmentation in the meantime Using mirror mode seems to be broken for this script (and a number of other scripts), im trying my best to find patches but cant really get it working correctly. whenever i find more information out about mirror i do post it and try to work things out to further improve the script Could you show me your inventory/equipment setup Thank you for the report, when this happens, does the scren still say its deathwalking on the paint? Recommended to have 75-75 minimum for blowpipe-trident. 75 magic is a minimum but you can use a rune cross for ranged
    1 point
  24. Could I get a trial please?
    1 point
  25. Just made 8 accounts using this. Fast and flawless. Explv you are awesome!
    1 point
  26. New engine in development
    1 point
  27. Just a quick question about the worker/master thingy. Does it run to the general store on Karamja near the Nature rune alter to un-note pure ess and then run back to the altar? or does it need to teleport back to karamja then run all the way back around?
    1 point
  28. Being Messaged on Skype by the Person, Have sold Gold to him in the past but he is wanting me to go first, which is pretty weird. when i told him "No" he said that mods told him to never go first, after looking at his account he has a bad review so i refused his business as i do not want to be scammed
    1 point
  29. 1 point
  30. Did mith gloves and multiple quests from scratch for him, great guy A++
    1 point
  31. I like how @Zully hides his inappropriate comments and him being extremely unprofessional. No where have I mentioned that they have 100% up time (although its usually pretty close to it) I've responded to all his messages in a timely manner and notified him of the situation. @Solution The proxies are fully functionally at the moment. They were down for less than 20 hours. I even offered him replacements which he would be able to use immediately proof of him not wanting the replacements (which would be in the same region): me being professional and letting him know of the situation: him denying fully functional replacements AGAIN: him being unprofessional and trying to give me business advice: TL:DR: Proxies were down for less than 20 hrs, I was in contact with customer and offered replacements but he denied them. Proxies are up now and customer is still upset and wanting to start a ruckus.
    1 point
  32. Just want to say first, you're my favorite script builder. All the scripts I bought from you are perfect so far. Totally looking into getting this script so I can make a couple of bot accounts to trade my main for lava runes. Is there any way I can get a trial to see how that works? If not that's fine, I'll probably be getting it anyways. Edit: Also wondering, how does Jagex react to trading bot accounts for runes? Is there any way to really prove it's your accounts (if they aren't linked together at all) My main is 2050+ total so I don't want to risk it.
    1 point
  33. Please refer to this one! I'll drop a follow so I get notified when you reply
    1 point
  34. hey man, could i have a free trial? thanks brotha
    1 point
  35. Broken in the members mining guild. It goes up to deposit box and ends script. Thank you for the great script. Account over 3 months old and no ban on this script yet. (used in moderation with plenty manual breaks and also babysitting while playing call of duty and drinking coffee)
    1 point
  36. @Czar I know you are busy. Just checking in on stamina support for ZMI. Thanks! PS. loving all your scripts. e/ if this helps at all one thing I noticed is that if I put a stamina in the inventory manually the bot will drink it when below my desired run %. However it will not take it out from bank. Specifically it will drink the entire stamina pot not just take 1 sip. e/ it will also do it with super energy even though I have stamina selected in the settings. (I manually took a super restore out when below the run % and it full drank it.
    1 point
  37. could i have a trial?
    1 point
  38. 1 point
  39. Khal Thank you for this amazing Script. hands down one of the best and more simple scripts ive e ver owned i have almost never experienced a real issue with it besides the very rare occasional death usual do to miss use of the settings/Human Error. this and a few of your other great scripts make me regret not picking your scripts exclusively when options were presented so far i have regretted it quiet a few times. Thank you again for this awesome script and i hope it was ok to post this proggy in here. idk how to get it to say my Total time ran but id assume its decent. first 99 with it and wont be my last. i ran this script 1-24 hours a day every day for awhile now. this account posted here was a nearly 2k TTL 124 combat account with a large bank 200qp ect.... i botted it all the way and plan to bot it to 2200 wish me luck. several more in the works. anyone who complains about banrate its not the script its you. i went from running 20-30 flax/bowstring bots on proxys/my ip and rinse and repeat every 3 days theyd get banned eventually i just kept trying and figured how to last longer and longer and now i havent had a real ban in over 4-5months
    1 point
  40. I got Iphone XS Max for the size of the screen, i love it and works perfectly with OSRS.
    1 point
  41. Can I get a trial please?
    1 point
  42. TRIAL?? would be apreciated.
    1 point
  43. 1 point
  44. I was able to successfully interact with a MySQL database from a script. I used XAMPP Control Panel v3.2.2 to handle Apache and MySQL locally. I used mysql-connector-java-8.0.11.jar as my SQL driver. I created a folder on my Desktop and put in the following: osbot-sql/ osbot-sql/lib/mysql-connector-java-8.0.11.jar osbot-sql/lib/OSBot 2.5.8.jar osbot-sql/Start OSBot with SQL Driver.bat The contents of the batch file is as follows: "C:\Program Files\Java\jre1.8.0_172\bin\java.exe" -cp "lib/*" org.osbot.Boot -debug The first bit "C:\...\..\..\" can be changed to just "java" if your running version of Java is compatible with OSBot. Mine isn't. If yours is, then you can simply do the following: java -cp "lib/*" org.osbot.Boot -debug Once the bot loaded, I then ran a simple test script to read from a table called "big_league" from my database. The test script is as follows: import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "", info = "", logo = "", name = "SQL Test", version = 0) public class Test extends Script { @Override public void onStart() throws InterruptedException { try { String host = "localhost:3306"; String db = "big_league"; String user = "root"; String pass = ""; String connStr = String.format("jdbc:mysql://%s/%s?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC", host, db); Connection conn = DriverManager.getConnection(connStr, user, pass); ResultSet results = conn.createStatement().executeQuery("SELECT `name` FROM `item`;"); while (results.next()) { logger.debug(results.getString("name")); } } catch (SQLException e) { logger.error(e); } } @Override public int onLoop() throws InterruptedException { return 50; } } And it worked. It printed out the 3 item names I had stored in my database. If a query works, then insert, update, delete, drop, etc. will also work too. Note: Your script won't be approved for SDN release because: SDN compiler won't have those libraries, so ClassNotFoundException will occur. Developers don't want to add bloat to OSBot that only benefits a few users. Potential licensing/legal issues using external libraries commercially, or redistributing them.
    1 point
×
×
  • Create New...