Leaderboard
Popular Content
Showing content with the highest reputation on 04/07/15 in Posts
-
Botting isn't illegal by law, just goes against the game makers ToS - Illegal by law in their game setting, if you know what I mean. If it says illegal by law - I'm sure it's referring to actual, world law, in which case, it's not illegal. If it says illegal by manufacturer or something of that sort, then yes, botting is considered illegal.3 points
-
He is the original owner and only one with access to the account details. He will have to explain why he recovered and stole the money.3 points
-
Hi I've been farming with this cute bot that does barrows for you ;) my goal is to get it to 5billion counted value, as well as maxing a few accounts. Currently I rotate 4-6 accounts out daily while gaining upwards of 40hours a day botting time. http://frostbug.dk/dynsig_barrows.png?username=gebotter2 points
-
2 points
-
I requested @bamieeter123 to post here. He has 24h to do so and is also placed in TWC. The story on Skype about being "hacked" is clearly a lie. As he is the original owner he is able to recover the account and will be held fully responsible. He must either recover the account back for you, or provide you with a refund.2 points
-
2 points
-
2 points
-
2 points
-
2 points
-
2 points
-
Hahaha not rich, just spend on things I care about Thanks guys! This mirror client is awesome2 points
-
Using Digital Ocean for OSBot Referral code Since I took the time to write this, I’m gonna be a shill and say use my referral code: https://www.digitalocean.com/?refcode=49d74b3ac319 This will give you $10 in free credits along with giving me $25 once you deposit $25 real monies. I believe you only need to deposit $5 to get the $10 credit, else hookup a credit card (don’t quote me). Fast Method (alternative to all the stuff below) I made a script that will take care of all these issues for you. Simply setup a VPS (as below), and once you have a SSH Terminal run: apt-get install curl bash <(curl -sL http://git.io/vWPiu) - It will ask you for a username, password, and VNC password. Enter these. - Wait for it to say something about rebooting. - Reboot, wait 10 seconds and connect to <dropletip>:5901 with a VNC client and enter your VNC password. - Login to OSBot client. This scripts source can be viewed by visiting http://git.io/vWPiu or https://gist.github.com/Lem0ns/52ccbf8d5038e8f2f446 Making the VPS This only has to be done once, then all future VPSs will be ready on creation! Step 1 - Create the Droplet Give it a hostname, then choose any size you’d like. I personally use the 512mb droplets as they are enough for the scripts I am using. If you need more resources you may want to get a larger package, this is mostly experimentation. Select a region, then pick “Ubuntu” as the OS. I personally use 14.04 32-bit as its easiest to work with and has long term support. Step 2 - While we wait You will learn this screen lies, and just always says “30 seconds”. While we wait, please download PuTTY if you are on windows: http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe This program allows us to execute commands in a remote setting. If you are on linux/mac you will just use the ‘ssh’ terminal command. Step 3 - Connect to VPS We are now ready to connect using PuTTY! Open putty.exe and you’ll be faced with: Enter the IP of your VPS then hit “Open”, then on the window that pops up “Yes”. Now login as “root” and enter the password you got in the email they sent you. Once you login it will ask you to change your password, do so. Note this is NOT the account we will be using, but make it secure regardless and unique if possible. Step 4 - Make a non-sudo user Now you should have a prompt. First thing we are going to do is make a new user. Note when I give commands that # and $ are not part of it, just shows its entered into a prompt. # adduser botter This will prompt you to enter a password and some details (Just hit enter for nothing), then enter for Yes (captial letter = default choice). Now we have a non-sudo user. To fix this, simply do: # adduser botter sudo Now disconnect and reconnect as that user (botter). Step 5 - Installing a desktop environment Now we need to make it so we have a GUI. We will install lxde, as its lightweight and does what we need: $ sudo apt-get update For those interested, the # turned to $ as this user is not root. Running the command will spew a list of urls (these list all the packages available in repos). Wait until it finishes, then: $ sudo apt-get install lxde This will display a large block of text (a ton of packages it will install, don’t worry). Just hit enter and then wait as your desktop is installed. Step 6 - Installing VNC Now we install VNC: $ sudo apt-get install x11vnc Now it needs a password file to authenticate users, create one by doing: $ x11vnc -storepasswd /home/botter/vncpasswd It will prompt you with a password, then a confirmation on the location of the file. After this, we need to add this command to the startup. Run: $ sudo nano /etc/rc.local and after all the blue comments but before the green exit 0, put: x11vnc -forever -xkb -noxrecord -noxfixes -noxdamage -display :0 -auth /var/run/lxdm/lxdm-\:0.auth -rfbauth /home/botter/vncpasswd Now press Ctrl-X and then the Y key, and enter. Finally, we do: Step 7 - Setup swap space Just as a precaution, and since 512mb is so small, we setup some swap space to make our lives easier. Just enter all these commands and tada, swap: $ sudo fallocate -l 4G /swapfile $ sudo chmod 600 /swapfile $ sudo mkswap /swapfile $ sudo sysctl vm.swappiness=10 $ sudo nano /etc/fstab That last command edits a file, at the end of it put: /swapfile none swap sw 0 0 Now for all this to take effect, we must restart: $ sudo reboot This will reboot the server with the new LXDE desktop environment, VNC, and swap in action! Step 8 - Connecting via VNC If you don’t have a VNC client, or even if you do, I suggest TigerVNC for connecting. Its pretty damn fast, and most of the time I get 20fps+ on a connection. Download from https://bintray.com/tigervnc/stable/tigervnc/1.4.3 When you open it TigerVNC, enter your IP into the box and press connect. It will prompt you for a password, use the password you made. You should now see your VPS desktop! Step 9 - Install Java 8 Open a terminal over VNC, or reconnect using putty. Either way, once your ready, enter: $ sudo add-apt-repository ppa:webupd8team/java $ sudo apt-get update $ sudo apt-get install oracle-java8-installer This will begin the Java installer, which will ask you to accept the license and then will download and install the package. After this is complete, you got java! Step 10 - Install Chromium I like to have a browser installed, so: $ sudo apt-get install chromium-browser Step 11 - Download OSBot I make some scripts which ease this process. First start up leafpad, then make a file containing: #!/bin/bash wget http://osbot.org/mvc/get -O osbot.jar Save this to the desktop as “OSBotUpdate.sh”, now make a new file and put: #!/bin/bash if ls osbot\ *.jar 1> /dev/null 2>&1; then mv osbot\ *.jar osbot.jar fi java -jar osbot.jar Save this file as “OSBotRun.sh”. Now, go to your desktop and change both files Permissions to allow executing by the owner only. Just right-click the file, Properties, then the second tab and select “Owner only” in the Execute dropdown. Step 12 - Creating a backup to use when creating new Droplets Do anything you want to be easily replicated onto other servers before this! You can always take another snapshot, so don’t worry too much. Now go to DigitalOcean’s website and power off the machine. Then click on “Snapshots”, give it a name, and click “Take Snapshot”. It will take a while, once the process is done you can startup the VPS and start botting. Note I didn’t have you login to OSBot as it wipes the user info on new VPSs. Step 13 - Creating more VPSs Now when you create a VPS, go to the “Snapshot” section and select your snapshot instead of choosing Ubuntu. Thats it!1 point
-
Hey guys! Just figured that I'd share my progress so far. Especially since I'm using an ideal account and only using the mirror client. This information may be useful to the developers of the mirror client. Account background: Created 10+ years ago. Botted heavily on RS3. Absolutely no bans, and only one mute offense EVER. How I set myself up for success: Completed tutorial island by hand, and let the account sit for a couple weeks to age. The age of the account (10+ years) in itself will go a long ways. I only use the mirror client, and I bot roughly 18 hours a day. I tend to switch what script I run daily. What I have done so far: This account has ONLY been botted and has only been played legitimately to do a few easy quests and maybe a little pking. Every stat you see is a result from OSBot, with the exception of experience gained from questing. Scripts that I have or am currently using: -Czar's "CzarRangeGuild" Script (10/10 - absolutely perfect) -Eliot's "Dream Fisher" Script (10/10 - absolutely perfect) -Khal's "Essence Miner" Script (8/10 - highly recommend) -Rudie's "Multi Fire" Script (7/10 - would recommend) -Rudie's "Multi Cooker" Script (7/0 - would recommend) -Isolate's "DarkMiner" Script (6/10 - would recommend, obvious bot-like actions) (4/2/2015) I've hidden a few stats for security purposes. These are the stats that I have already obtained prior to making this post. (4/3/2015) After running Czar's "CzarRangeGuild" script overnight for a beautiful 13 hour progress report, I've decided to take a break. I obtained 81 range (+3 ranged levels). I plan to continue running the script for another overnight progress report and to get another step closer to my 99 range goal. Break time will be ~6-10 hours. P.S. - Czar you need to fix your "time to X0" formula There's no way I'm getting 9 ranged levels in 8 hours, haha! (4/4/2015) I decided to switch it up and train a different skill in an effort to boost my total level. From my understanding, the higher your total level, the less suspicious you look to Jagex. I trained Firemaking overnight for 5-6 hours with Rudie's "Multi Fire" script, to achieve 71 (+70) firemaking. This is a rather light botting session compared to the previous few days. I'm beginning to see a potential main account, but there is still a lot of work to be done... I'm re-evaluating my goals and figuring out exactly what I would want this account to be in the scenario that it doesn't receive a ban. Perhaps I'll level each skill to 70+ for a nice main account, and then focus on 99 goals afterward? Suggestions and ideas are appreciated. (4/5/2015) Happy Easter Everyone! I hope you all enjoyed some time with your family! Just like yesterday, I decided to boost my total level a bit and ran Rudie's "Multi Cooker". I had a little over 1,000 raw shrimp from when I started fishing, and cooked all of them to achieve 42 (+41) cooking in just a couple hours. Afterward I ran Eliot's "Dream Fisher" script overnight for a ridiculous 16 hour progress report to achieve 75 fishing (+3). One more level until sharks! I'll probably cook most of the lobsters I got before selling them to get my cooking somewhere in the 70-80 range. I also want to give a huge shout out to Botre for supporting my adventure and donating two premium scripts to me via PM. That was absolutely not necessary, and I really appreciate it. I can't wait to try them out and let you all know how great they are (4/6/2015) I ran Eliot's "Dream Fisher" overnight again for a 12+ hour progress report (I forget how long exactly) to achieve 77 fishing (+2). I then ran Isolate's "DarkMiner" script for a few hours this morning to achieve 40 mining. I also tried out Khal's "Essence Miner" script in anticipation of training runecrafting soon, but the XP gains were very insignificant. I also completed a few quests today in preparation for Monkey's Madness. I completed "The Grand Tree", "Plague City", and "Tree Gnome Stronghold". These quests put my Agility level at 32 (+7), my Attack at 46 (+5), and my Magic at level 14 (+13). I'll be taking a break overnight and continue botting when I wake up before class tomorrow. (4/9/2015) The past couple days have been quite boring. I've just been fishing with Eliot's "Dream Fisher" script to continue building my bank while I figure out what I'm going to do next. I achieved 79 fishing (+2) and a whole lot of sharks! I'd really like to start training hunter, but I know hunter scripts are buggy in the mirror client at the moment. I have a lot of things due within the next few days at school so I haven't really been browsing the scripts lately. I'll be switching it up over the weekend I'm sure once I have my assignments done. But for now, just going slow and steady. (11/21/2016) I've recently hopped back on the OSRS saddle. I left relatively unannounced long ago when I got hit hard with exams, and started working full time. Oh wait, that's the best benefit of botting, right?! Anyway, I took a long break from Runescape and I was going to jump-start this thread back up with my progress. It hasn't been really been touched since my last update. If this is against the rules or considered grave-digging, please let me know. I can start another thread or if people are just not interested I won't spam the forums with it. In the meantime, I'm taking a look at all the scripts and how they've changed since I left. If I had previously rated your script on this thread, you can count on me using your script again and updating the results.1 point
-
package org.bjornkrols.lesserdemonkiller; import java.awt.Color; import java.awt.Graphics2D; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; /** * A simple combat script that kills lesser demons, perfect for the caged Lesser demon in the wizard tower. * Does not eat. * For educational purposes. * * @author Bjorn Krols (Botre) */ @ScriptManifest(author = "Botre", info = "Kills lesser demons", logo = "", name = "Lesser demon killer", version = 0) public class LesserDemonKiller extends Script { /** * The name of the monster we will be looking for. */ private static final String NAME = "Lesser demon"; /** * The current time in milliseconds, used to calculate the elapsed amount of seconds. */ private long startTime = System.currentTimeMillis(); /** * The possible states of this script. */ private enum State { DIALOGUE, ATTACK, IDLE; } /** * The current state of this script. */ private State state = State.IDLE; @Override public int onLoop() throws InterruptedException { /* * Find the current state and react accordingly. */ switch (state = getState()) { case DIALOGUE: // Sleep for 600 - 6000 milliseconds (so it looks like we're reading the dialogue). sleep(random.nextInt(6000) + 600); // Click continue on any message with a continue option. getDialogues().clickContinue(); break; case ATTACK: // Find the closest NPC with the name NAME. NPC target = getNpcs().closest(NAME); // Attack the target if it isn't null and exists. if (target != null && target.exists() && target.interact("Attack")) { // If the target was successfully attacked, sleep until player is animating or interacting. new ConditionalSleep(5000, 100) { @Override public boolean condition() throws InterruptedException { return myPlayer().isAnimating() || myPlayer().getInteracting() != null; } }.sleep(); // Don't forget the .sleep(); ! } break; case IDLE: // Nothing is done here, you could add some random behavior though. break; } //Sleep for 300 - 600 milliseconds every loop. return random(300) + 300; } private State getState() { // If a dialogue is pending continuation, go continue it! if (getDialogues().isPendingContinuation()) return State.DIALOGUE; // If we are currently attacking a monster, idle. if (myPlayer().isAnimating() || myPlayer().getInteracting() != null) return State.IDLE; // We are not attacking a monster, let's stop being lazy and get to work! return State.ATTACK; } @Override public void onPaint(Graphics2D g2d) { super.onPaint(g2d); // Set the drawing color to yellow. g2d.setColor(Color.YELLOW); // Draw the current state, useful for debugging. g2d.drawString("State: " + state, 20, 250); // Draw the elapsed amount of seconds since the script was started. g2d.drawString("Elapsed seconds: " + (int) ((System.currentTimeMillis() - startTime) / 1000), 20, 265); } }1 point
-
Started with a fresh level 3, will be posting stats, wealth gains and progress reports in this thread! Every stat on this account has been or will be botted using my own scripts. I will not be using breaks. Breaks are for chumps.1 point
-
Hey everyone, I just started off a fresh account a few weeks ago (I think it was 2 to be exact) and I have been botting on and off since then on this account to mainly test out the mirror client and so far I am loving it. My plan is to bot this account all the way to max but you never know what might happen so I'll be taking it step by step, my first goal is to get 99 mining. My 99 preference is going to be mainly based on which will gain me the most money and then I will work down the list from there, the only reason I am not getting 99 Runecafting first is because of some complications with the mirror client and the walking method. Any way, here's a progress report of my account so far, I hope you stick around for the journey because it's about to be a long one. Current Bans: 1 Total Wealth on Mule: 16m Client I'm using: Mirror Client Current 99 I am botting towards: Mining Script in use: Khal Motherlode Scripts I've used: Screenshots:1 point
-
Due to popular demand (mainly by me) I have started this petition to support Cruelhitz in his Quest to achieve CBA status. The good and sanity of the OSBot Chat Box depends on it *shimmys back over into Chat Box* Like this is you do/don't agree! *I'll edit it later so it only says do *1 point
-
PM Maldesto the Admin I can tell you right now the answers are NO,NO and no more open space.1 point
-
If a script supports deathwalking, and it dies for whatever reason, the script will be able to walk back to where the death occurred and continue operating as normal.1 point
-
1 point
-
I would Imagine you are on some sort of watch list. Can't say for sure, but I would probably stay away from botting if I were you. IF YOU MUST BOT: - I would use a premium script - Don't YOLO suicide bot. Stick to some low times for a while Just my thoughts1 point
-
1 point
-
This account making thread can be broken down into a few simple steps You post on thread about what stats/req you want the account to have i PM you a price and we negotiate I make the account and take nothing until account is completed that way if something happens to the account you are no way responsible for it and there is nothing lost on your part once account has been completed you pay me then i hand over account + ACCOUNT EMAIL. TOS aside from the Global TOS; I Will accept either RSGP or paypal IF we have made a deal and you have agreed to pay me the agreed amount you have 1 hour to pull out of the deal. anything beyond that you will have to pay for the account we agreed on WITHOUT A CHANCE AT REFUND REGARDLESS. This will be disputed against you and we will have an admin sort it out. but by saying you will pay me you automatically agree to these TOS. NOTE: I provide email i provide supplies i will not provide bonds if needed you reimburse me afterward for the supplies needed to make account.1 point
-
1 point
-
I have no knowledge about this at all but I don't think its possible because as Framble says, they can spawn as whatever.1 point
-
1 point
-
You're doing it right by mixing up the skills and not going crazy on just one. Good luck (:1 point
-
1 point
-
1 point
-
If you're still not sure you could contact them and ask them if they allow botting1 point
-
1 point
-
I'm intrested in this one as my first "premium" bot. How long can I run this safely?1 point
-
It was I'm just giving him shit. Botre knows I love him. new scripters wouled have a hard time understanding task based anyway, that is why everyone makes tutorials using states.1 point
-
for a small script such as this I think his choice to use states was for the better1 point
-
1 point
-
1 point
-
Considering my time zone I'm on a lot of times when other mods are not. I've put in an application so we shall see1 point
-
1 point
-
1 point
-
Love this script, i bought it when i was 83 range now im 93 in less then a week , i can't post my proggie for some reason1 point
-
Maybe set a timer if a player is idle for a certain time it activates camera movement (all i have to do to let the script continue)1 point
-
1 point
-
God bless. He is just showing you the button to check. Then just put in the right info and start it1 point
-
1 point
-
1 point
-
Are you low on likes? Do you feel insecure about yourself due to the low number of likes you have? Fret no longer! This thread shall solve all your problems! Simply like my post and post below and I will like yours. You can also ask others to like your post too! Remember, though, you must give a like to receive a like. With that said, let the liking begin! Likes must never be given upon request. If requested to give a like, simply ignore that post and report the thread and/or post to the closest available moderator or administrator. Post are not to be requested liked to avoid like farming. Likes are a serious business and should only be given when earned.1 point