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.

Cloudnine

Members
  • Joined

  • Last visited

Everything posted by Cloudnine

  1. It's been pretty much done for a while now, I've been converting it to [the other bot] though. I just need to tweak a few misc. things. I'll probably need to release a few free scripts before I'm able to get this in the repo. Skype me suggestions for free scripts. Currently I'm planning on a clay miner, humidifier, AIO Fletcher(eventually might become premium), an alcher, a few basic combat scripts, an edge man killer that loots herbs, and a few others. Oh btw, the speed looks like it's going to be somewhere from 750 to 950 an hour. What speed do most low CPU tabbers have?
  2. As soon as I can figure out how to make the code somewhat obfuscated/hidden from decompilers, and figure out how to do a kind of "kill switch" to where I can disable the trial version after I release the premium one. Awesome I am definitely interested I added you on skype btw, name is matt Sweet. Accepted.
  3. As soon as I can figure out how to make the code somewhat obfuscated/hidden from decompilers, and figure out how to do a kind of "kill switch" to where I can disable the trial version after I release the premium one.
  4. Yeah I might do that. Not sure yet. this going to be better than ATmercher???? Also how much will it cost? Yes, it will probably be $10 one time payment. Not 100% sure yet.
  5. Yeah I might do that. Not sure yet.
  6. I'd like people to see that it can run for a week str8 I'll prob keep it online for up to a month and then hit the kill switch so that ppl can no longer use it. Edit: Sry for double post. Accidental. You can get it added to the SDN and when you want it disabled just let the admin team know. Nah I want it to be premium when it hits the SDN, but in the mean time I'd like people to get to try out the script. As soon as I can get it in the repo it'll be premium.
  7. I'd like people to see that it can run for a week str8 I'll prob keep it online for up to a month and then hit the kill switch so that ppl can no longer use it. Edit: Sry for double post. Accidental.
  8. Unfortunately, private scripts are against the rules on OSBot.
  9. I finally got around to making an AutoMercher. It didn't take long for me to make it. It's 100% flawless. Very efficient. Takes low CPU. The code is very clean and professional. Once I obfuscate the script and get some web hosting I'll most likely release a trial version as a local script, just until it's proven repo-worthy. Why'd I make the thread right now? A thread for the script is required when you request a script be added to the SDN. So here it is. I'll post some proggies later, and as soon as I figure out how to secure my code, I'll be releasing a trial version. So keep in touch. Edit: By secure my code I mean obfuscate it or load it from a web host to somewhat avoid leechers.
  10. So far I've got 43k+ Help me out http://osbot.org/forum/user/9813-cloudnine/ ;) lol #HatedOffLedZepp ;)
  11. You should make all of them show up under 1 icon. Rather than 1 icon for each account, it would be 1 icon and it would say. "Warning: 'Blah' is being attacked by 'Blahh'." I'm going to do something like this, and I have a lot of other things I'm going to add as well. It will make managing 100 bots a breeze. ;D
  12. "Donate" $100 to their PayPal, in exchange for a script. Looooooool. Nice one ;) You can always ask the admins for permission to "Purchase" a private script, rather than "Donating" for one. ;) Anyways, if you get permission to buy the private script, I have an idea for $700k/hour, but it's worth far more than $100. If I sold the script it'd make me thousands.
  13. This sucks. (You told me to criticize it.. You didn't say constructively.) Jk. Looks good. This would work great for most scenarios.
  14. Christmas colors :3 Lool neither. I always use 1 color. I guess for christmas events maybe. Or rare finders
  15. My account clicked on the wrong door for 14 hours in the maze random..It even clicked to continue on the dialogue "I think this is the wrong door" You should make it click on the second closest door when the message for that interface contains "wrong door" or something like that. Thanks. *So going to be banned.*
  16. Cloudnine replied to Cloudnine's topic in Snippets
    Yeah there probably are quite a few script skeletons out there, but mine's explained decently, and I put some helpful tips for new scripters on mine.
  17. I love 07, but I'm worried it won't live much longer. Will it die in a nuclear bomb? Will it Jagex shut it down in the future? Will people stop playing? I believe that Jagex will shut it down eventually. As of right now, they wouldn't do that, it's getting them money. But possibly in the future. What do you think?
  18. Cloudnine replied to t3hu's topic in Archive
    I'm not too sure about GWD, I guess I wouldn't really mind either way. But yeah I am worried about the game going extinct. I hope 07 lives on foreverr!!! If not, I'll have to make an EXACT replica of it.. > (Yes I'd do it if 07 scape died.)
  19. xD I was wondering what these were about. Too bad there's only 2 here Someone get poetic, we need more.
  20. I just now made a flawless AIO fletching script. I'mma see about getting it in the SDN. How much would you be willing to pay for something like that if it were in the repo?
  21. Cloudnine posted a topic in Snippets
    I hate retyping the basic script layout every time I write a new script so I made this class. I figured it could also benefit new scripters if I released it on the forums. I'll explain the code in notes. import java.awt.Graphics; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; @ScriptManifest(author = "Cloudnine", info = "TemplateScript v0.1", name = "TemplateScript", version = 0.1)//How the script will show up when you go to start it public class TemplateScript extends Script { long startTime; long runTime; public void onStart() {//This code executes when the script is started log("TemplateScript v0.1 by Cloudnine has initialized!"); startTime = System.currentTimeMillis(); } public void onExit() {//This code executes when the script is stopped log("Thank you for using TemplateScript v0.1 by Cloudnine!"); log("Ran for " + runTime / 1000 + " seconds."); } public void onPaint(Graphics g) {//This is to "paint", or display, content on the screen runTime = System.currentTimeMillis() - startTime; g.drawString("TemplateScript v0.1", 450, 345);//X: 450 (left and right), Y: 345 (up and down) g.drawString("by Cloudnine", 450, 360); g.drawString("Run Time: " + (runTime / 1000), 450, 385); } public int onLoop() throws InterruptedException { /* * Place Code Here */ return 100;//sleeps for 100ms, then restarts this loop } } Even if you don't need the explanation, you can put this in Eclipse and do Ctrl+F, Replace TemplateScript with ScriptName, rather than retyping this over and over. If you want to see the functions OSBot provide you with, visit the api. http://osbot.org/api If you are new to java, and want to learn enough to begin scripting, you can try out the Oracle Java Tutorials. That's where I learned. (Look it up on Google, it's easy to find). Also, for the beginner programmers, download an IDE if you don't use one. That will help you script 10x more efficiently. It's practically impossible to program efficiently without an IDE. An IDE is a text editor made for programmers. Ex: Eclipse, Netbeans, etc.. I prefer Eclipse. Random Tip: If you use Eclipse, press Ctrl+Shift+F to automatically format your code neatly.
  22. deselectItem() is really weird. Doesn't seem to work well, also seems bot like. Is there a boolean that states if an item is selected?
  23. Cloudnine replied to Laz's topic in Releases
    Yeah it's nice. I'm glad I switched to OSBot. Anywhere else you have to wait about 2 weeks for an update, and by then all of the randoms have changed again. We're keeping Jagex busy. Only problem as of now is the freaky forester, and the problem where the bot doesn't deselect items when a random kicks in. Other than that, it's doing pretty nicely.
  24. If the random solver kicks in while an item is selected, it won't know to deselect the item. When opening doors, clicking levers, etc. the random solver doesn't know if it should deselect an item, so it just hangs forever until you fix it manually. Please look into fixing this bug. Also, please make interact() automatically know if it should deselect an item. That would be a really cool feature. Or simply make a boolean for areItemsSelected(). Thanks. Greatly appreciated.
  25. so you mean i got banned just by using the osbot client? how can they tell im using it? Lol brah you didn't get banned for using an HerbViewer, nor did you get banned because of the client. It's just butt-luck. It's like a 1% chance, but your bot must have done something that was plum-dumb enough to get you blackmarked. That or your ip is blackmarked. Turn off your router for 10 sec then turn it back on. Ur ip will magically reset to anew. Gl man. Sry to hear about the ban.

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.