Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Articron

Trade With Caution
  • Joined

  • Last visited

Everything posted by Articron

  1. I agree, for the relatively small community we are right now, there are way too many scammers.
  2. Haven't had that touch my brain yet. Is added to the to come list!
  3. Current version: 2.7.01 Working OsBot revisions 1.7.X NOTE: COMPLETELY BROKEN ON CANNONBALLS, GOLD AMULETS, ROF IRON SMELTING! On another note, as some of you know I am making a complete overhaul on this script, for 3.0. (Or "Ultimate CronSmelter). Due to my exams I can't really finish this up in an efficient way, and altough 2.7.01 will work for you, it will contain bugs that are not going to kill the script, but are annoying to say the least (in a programmer perspective that is). Expect 3.0, which will be a completely new script from scratch, with exactly the same functions, and a couple of new ones I won't tell you for the sake of curiousity within 2 weeks. The version that is currently is being updated for your use will remain updated untill 3.0 is done. PLEASE understand that updates are made when I can afford to cut in my study times. Anyway, for the following updates I made sure CronSmelter will be runnable for atleast 1-2 updates on the current 2.7.01 version. 3.0 has a focus on efficienty and reliability, for me to update the script more easily, and to get the most of the script in general. For people wondering: Yes, 3.0 will be commited to the SDN. And no, it will not become a paid script at all! It will remain free for as long as OsBot exists. Why? This script was my very first big project script, which I found very entertaining and educative at the same time, and it would be selfish to charge you money for it. I hope you understand my situation Changelog Features: * Easy to use GUI * A paint (By DarkzSide) * Supports Bronze, Iron, Steel, Mithril, Addy, Rune * Cannonball support * Ring of forging support * Option to make gold amulets from goldbars * Support for Al Kharid + Port Phasmatys * Auto detects required ore for bar smelt * Walking, banking, smelting (Fast & efficient) * Failsafed *Antiban: Random mouse + camera movements * Handles closed doors 100% To come: * Superheating * More antiban * Support for making versatile jewellery Known bugs: Ring of forging is completely bugged! Progress reports: Source code untill 1.7: Articron's Github After 1.7 the source code is no longer shared. Download Link: https://dl.dropboxusercontent.com/u/9385659/CronSmelter.jar A like keeps me going! Credits Articron - Script Writer DarkZSide - Paint maker Krulvis - Hex value for interface GoldenGates - Method P/H Medic - let me use his account for adding cannonball support LiamBaby - initial Paint maker Toadflax - Made secondary paint Apple - Made secondary paint
  4. Articron replied to Toadfly's topic in Archive
    Can you make me a paint for my CronSpinner? The one I made looks utter shit. Hi by the way
  5. Articron replied to Laz's topic in Releases
    Is withdrawing items fixed in this revision?
  6. Below a bridge, my friends told me later that I was so drunk I was shouting I wanted to live the life of a poor guy, and left the party.
  7. I could make a Theiving script if I had a theiving level higher then 1 on my account, lol.
  8. A good merchable item currently is rune knives. Buy for 3K a peice, sell them at 3.5K each.
  9. Yeah I guess that's a cheaphax for it, it's a model that isn't yet added into OsBot.
  10. I've tried playing around with the Position class, but I can't seem to make my script click a certain tile (based on the game coordinates). Any help?
  11. Apparently opening the bank is missing/broken in the current OsBot API, so I just wanted to share you guys the method. It's HIGHLY likely you will find simliar things in released scripts. final int[] BANK_IDS = { 1604, 2213 }; /** * Opens the nearby bank * @throws InterruptedException */ private void openBank() throws InterruptedException { if (!client.getBank().isOpen()) { for (int bank : BANK_IDS) { if (canReach(script.closestObject(bank)) && closestObject(bank) != null) { selectEntityOption(closestObject(bank), "Bank", "Bank booth"); } else { //wandelenNaarBank(); log("Can't find the bank!"); } } } else log("Bank is already open"); }
  12. Ah, Wiz has explained my problem very well! Thanks bro ;)
  13. Articron replied to danieljvdm's topic in Archive
    Nice alternative to the withdrawing method being broken at the moment, I commend you.
  14. Oh, hahaha, I'm sorry, I should've been more clear in my initial post. Anyway, what I'm trying to explain is the following: Snippet from let's say Altar.java: Combat combat; public int onLoop() { try { useItemsonAltar(); activateAltar(); combat.killCow(); } catch (InterruptedException e) { log("nope werkt ni!"); e.printStackTrace(); } return 1; } The method it's refering to in Combat.java: public void killCow() throws InterruptedException { sleep(3000); unicow = closestNPC(UNICOW_ID); if (unicow != null && !unicow.isUnderAttack()) unicow.interact("Attack",true,true); while (client.getClient().getMyPlayer().isUnderAttack()) { log("currently under attack: " + Boolean.toString(client.getClient().getMyPlayer().isUnderAttack())); sleep(5000); } lootHorns(); } It seems that it has trouble trying to call that method from another class, even though I tried a fake constructor, or anything amongst the sorts. My IDE doesn't show up any errors, let alone that I think I made a mistake, OsBot itself just won't execute the killCow method, and will skip it to repeat the onLoop().
  15. Hi, I'm currently making a combat script. I have divided this script into multiple classes, being Combat.java, Walking.java, Main.java, And various other classes. When I create an object from another class, to use it's methods and everything that comes with it, Osbot just gives me the "error with script executor" error thing. Any help?

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.