-
Posts
80 -
Joined
-
Last visited
-
Feedback
0%
Posts posted by apa
-
-
I'm looking at the costs at running a bot farm to see what I'd need to expect minimum to break even. I'm thinking as far as power consumption costs, cost of proxy per account. I have a few computers I could run ~20 bots on for now. I'm thinking of a f2p throwaway farm. Scripts I'd write myself, auto mule and everything.
What got me interested was this proxy service https://www.socks-proxy.net/buysocksproxy.html which offers an updating list of proxies. You could have a different proxy per throwaway account...
I'd like to know if anyone has done the math to the specifics.
-
1 hour ago, Malcolm_OS said:
I don't think this would avoid the 5 minute AFK timer because you're not actually interacting with anything in the game.
I use it in one of my scripts and it doesn't logout. You only need to move your mouse over the client to stay logged in.
-
I have something just move the mouse on or off the screen every 0-3 minutes.
import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "apa", info = "Afks", logo = "", name = "AFK", version = 1.0) public class Main extends Script { public void onStart(){ } public int waitTime(int min, int max) { return (int)(Math.random() * (max - min)) + min; } public int onLoop() throws InterruptedException { if (mouse.isOnScreen()) { mouse.moveOutsideScreen(); } else { mouse.move((int)(100 + (Math.random() * 660)), (int)(100 + (Math.random() * 400))); } return waitTime(1000, 240000); //1 sec to 4 mins. } }
-
I have an update but I'm running it privately for a bit to make some bonds. It was a problem with OSBuddy prices going down making all items 1gp. It now pulls item prices from official osrs page.
-
1
-
-
If you're still looking, I may be interested. Don't have a rank, but I do have access to upload scripts (just haven't got time to release a CDN script yet). I have one released free script with fantastic feedback however;
I also work in software and finished my degree a few months ago in Computer Science. Send me a pm or Skype @ 'aapalapa' if you wanna talk.
-
On 3/12/2018 at 3:54 PM, apa said:
The GE Looter
So whatchya got?
We walk around the GE. Find an item that isn't SHIT? click it. Avoids all items under a certain price (specified by you), calculated on the grounditem stack size. When inventory is full it banks and repeats. If it's standing in an odd place around the GE it'll eventually wander back to the centre.
Next to add (if this gets interest):
- AIO Looting - closest bank to closest defined looting area. Brings food if told, walks back to area on death/whatever.
- muling
- account recreation/tut island (ill probably feel cheap and just do account list).
- multi-action, instead of standing there, you cut the lil trees, or get 99 firemaking (buying the willows). gimme an idea here.
I'm really busy so we'll see if i can find the time.
V5 RELEASED:
- Major refactor to the entire script base. I'm considering building on this and begin an AIO Player script.
- Walks back to the centre of the GE when its been around the outside for too long. Looks better than standing around.
- Fixes on spam clicking im not sure are much better, still working out speed vs accuracy methods that look natural.
- Walks back to the GE if you die somehow (tested with new accounts starting from lumby).
- PRICE LOOKUP!!
You can specify the minimum price of a stack/item to pick up from the UI. The bot will run for items, but as it does this, it looks up the price, and adds it to a blacklist of minimum stack size for this item to be worth picking up. If the requirements aren't met next time it sees this item, it doesn't bother with it.
- Walks to the item if out of reasonable range.
- Turns run on once you reach between 4 and 34 run energy (this updates every 1-3 minutes).
- Walking back to area when out of bounds
- Shuts down once bank is full.
- Paint; time run, items collected, total money gained/hourly.
Some nice loots:
From TTJDTWW:
Loot combined:
More Screenshots
-
On 7/12/2018 at 11:32 AM, os99Magics said:
Nice release mate
Thanks, how's it working for you?
-
40 minutes ago, lolman15 said:
I understand completely, its hard nowadays to earn something if you are a starting scripter =] .
will try it out for sure if you release one !
That's the thing, I jump around too much to keep a scripter rank anywhere haha. I used to write a lot of bots for RSPS's, some of which made me enough to pay rent for a few months. I'm approved for the SDN, just need the time now
Thanks! Maybe I'll take a look at fixing this and beg to have it on SDN against the rules so I can publish some more haha -
16 minutes ago, Chris said:
Don't know how I missed that haha
-
5 minutes ago, Luke Reading said:
Hi guys. Trying to make my first script by using explv 101 tutorial layout but making a chaos druid script instead.
however i was making my methods but for some reason i cant understand red lines are coming up. I even copied and pasted one of explv to see if it would work and i still got red lines.
any help would be appreciated
Line 1: missing semicolon. Whenever you have a statement, it needs a semicolon. If placing a set of curly brackets after the statement doesn't work, you know it needs a semicolon.
the other ones between '(){' is because you're missing spaces between the '()' and '{'. That's just styling "errors" to make your code look pretty.
The long one; missing a bracket on the left side, right after the return.
Last two lines, they are erroring because you have return true, else, return true. This always returns true, make the second one return false.
-
9 hours ago, lolman15 said:
ahh looks cool too to bad you dont have the time for making a wildy one then =p
I'd like to, but my time is too preoccupied to do it for free right now. I had to get rid of all my hobbies for a while to get this MMO done haha.
I've had other people contact me about making one, I would do it for GP/$ and make it private or exclusive, or just raise a pool of cash/GP and I'll release it free for everyone.
I hope you understand why I'm asking, I don't have a job, and my income right now is literally from random things like this...
But, if you don't mind waiting a few months at least, I'm sure I'll be back to make some more hobby scripts.
-
1
-
-
On 4/6/2018 at 8:34 AM, mercylad said:
Make the account spam the fap emote while waiting, profit for dayz
Also you are like legandary scripter apa kappa?
Haha, ask for tips and follow people around?
Nah, I joined before the other apa, with this name haha. I just have been busy with other things that I haven't really been in the botting scene for a while.
On 4/6/2018 at 7:32 PM, sh00td00t said:Honestly... this script got me a bond in two days on F2P. Quality. I probably lucked out because of the holiday drop parties around Easter. But, it seems that the GE has been quite saturated with looters lately, or maybe its just luck.
Anyways, good stuff man! Would love to see this modified to support lower Wilderness/Edge-bank as a f2p looter
I'm glad it worked
On 4/18/2018 at 10:41 AM, TTJDTWW said:Damn
I'm that's insane haha. Glad it worked well!
On 6/3/2018 at 6:01 PM, blackfre223 said:I'll take a look at the bug, I think it was an old API for requesting from OSBot exchange.
On 6/6/2018 at 6:59 PM, blackfre223 said:Just started it up with no issue (Win7 User). You might want to check some windows settings to see if anything is blocking input or possibly do a restart.
EDIT: I think the bounds might be off slightly in some of the corners of the GE. Sometimes it won't run all the way to the wall if loot is there. Possibly a bounds issue? Not sure 100%. W/e the case I have SO many random things because of this. Keep up the good work!
Yea the bounds aren't perfect in the GE, I kinda left it like that to be safe from going outside the walls. I could adjust it.
On 6/15/2018 at 5:44 AM, lolman15 said:make a wildernis one please
Maybe I'mm make that my next release
On 6/20/2018 at 6:11 AM, blackfre223 said:Hey @apa I think this broke now. Recently I had been running it with no issue but as of last week it no longer detects items of any value. I think OSRS did something with looking up item price as even if I set this to pick up things over 1GP it won't even pick up ashes. Hopefully you can fix this!
I'll take a look, you could try setting the value to 0 to pickup.
I've been gone for a while, working on another project that will be rather interesting. I'm making an MMO somewhat similar to OSRS; but you control multiple characters, and a lot of the grinding can be botted with an in-game control system. So, I probably won't be working on any free scripts for a while, I just can't afford to. I may release a CDN script in some time for AIO f2p bot farms, but really only if there's enough interest, and it wouldn't be free unfortunately
. I spend all day every day working on the MMO. An early release will hopefully be in a few weeks, but I put updates here: https://www.reddit.com/r/AdventurerSimulator/.
-
1
-
-
On 3/17/2018 at 5:23 PM, inababila said:
I also have the same situation with @Lemons and here is what I use for headers:
loginRequest.addHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"); loginRequest.addHeader("Accept-Encoding", "gzip, deflate, br"); loginRequest.addHeader("Accept-Language", "en-GB,en-US;q=0.8,en;q=0.6"); loginRequest.addHeader("Cache-Control", "max-age=0"); loginRequest.addHeader("Connection", "keep-alive"); loginRequest.addHeader("Content-Type", "application/x-www-form-urlencoded"); loginRequest.addHeader("Host", "secure.runescape.com"); loginRequest.addHeader("Origin", "https://secure.runescape.com"); loginRequest.addHeader("Referer", "https://secure.runescape.com/m=weblogin/loginform.ws?mod=www&ssl=1&expired=0&dest=account_settings.ws"); loginRequest.addHeader("Upgrade-Insecure-Requests", "1"); loginRequest.addHeader("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36");
This was for login, so you will only need to change the referer link. Credits go to @Explv
Thanks so much, some things came up with school recently so I had to drop this for now, I'll take a look soon. I'm putting this on low priority for now.
-
4 hours ago, Lemons said:
You can do requests outside the webpage, just spoof the headers. I make all my accounts in a java program.
I was looking at that, I couldn't figure out the headers haha, it was 6am...
What does yours include?
-
2 hours ago, b0tscape said:
How would you access the username tables when the API is limited to highscores and GE data? Even if you searched through every entry using their url format, how do you filter our accounts banned, locked or inaccesible?
The extension directly contacts the Runescape name lookup API, and it returns true or false with suggestions if a name is taken, banned, or locked.
I have this part of the name search done already, i just need to make a name loader, sorter, and UI.
3 hours ago, inababila said:This will be very useful. However, for account creation, it will be better if you could apply connecting to different proxies each time an account is created. Otherwise, it will be useless. For the username searching, it would be great to find out a unique character name. A project like this is too huge and needs so much work, so I would like to say good luck!
Ah good point, proxies would be needed. I took a look and Chrome has direct support for proxies with extenstions https://developer.chrome.com/extensions/proxy.
The username searching i can do at least quite easily, as long as Jagex doesn't throttle that. I'll focus on the name search for now I think, see if its worth it to make the account generator.
-
1
-
-
I'm looking into making a chrome extension for searching from a list of accounts for unused runescape names, as well as plugin to create accounts from a list, or from random random email with dictionary based usernames.
The plugin would repeat this x amount of times, or until list is empty.
The reason for a plugin rather than program or web app is to bypass the security Jagex has so you can't do requests outside of their webpage.
This is not ready for release, but im considering developing this if it has enough interest, and I want to ask what a reasonable price for a service like this would be.
It would require 2captcha or similar to allow the full automation for account creation to start.
For 2captcha to solve the captchas for you, it costs ~$3.00 USD per 1k captchas, so thats a base price of .3 cents per account.
2captcha will be handled easily by the chrome extension, payments for using the extension will be through Ethereum (bulk purchasing to reduce fees), using MetaMask to keep things secure and automatic.
Playing around with it, it appears you could get about 3k name searches, and 100 accounts per hour. Per webpage (probably best to do on different computers/ips).
The extension would insert code into the site and let you activate it from there, kinda like this:
Let me know what you think, if its even worth making.
-
2
-
-
39 minutes ago, Colon Nel said:
I tried setting energy threshold to 101 but it is ignored apparently.It doesn't look like there's an easy way to do this. You could interrupt, disable run, and recall the web-walk, but that won't accomplish anything as it'll just turn run back on, and be slower recalculating the web-walk (if it precomputes), as theres no way to get a path back from the event, only destination point it seems.
An addition to the API for this would be easy enough.
-
If youre not using advanced methods in the event, you could try
walking.webWalk();
I'd assume this sets same defaults as the WebWalkEvent under the hood though. I'd go with setting energy threshold to 101 if the method doesn't clamp it to 1 - 100.
-
The bright side if nobody does have any for sale; those all require next to no resources to do at least, easy to bot.
-
Great to see OSBot so stable & feature-full. Thanks for update
-
2
-
-
Just release V5. Take a look!
-
24 minutes ago, Juggles said:
Can't code a failsafe for that, its handled by the client
Damn, yea I guess you cant really intercept the random events, the script pauses entirely...
I suggested a timeout on the lobby at least, that at least just kills the script if it sits there for 20+ seconds without finding the correct button id.
-
4 hours ago, Destrupt said:
Seems to work fine, put it on for like 3 hours and didn't get anything special. Maybe if you left it on running overnight you'd probably get some stuff. Would be great if it had some paint so you could check on it every couple hours to see if you've gotten anything special. Great work.
It depends a lot on the time you run it. Most drop parties are during a certain few hours.
The paint on my version has a total money gained based on osbuddy prices, and money gained per hour. It's still not 100% accurate though, a bug im having.
-
Sorry yea its not fixed, but yea this got my accounts banned
@Alek Maybe add a "logout and kill script" if it timeouts on the lobby? Would be a great anti-ban in case they do this a second time.
What's The Most Reasonable Cost/Bot You Can Find?
in Spam/Off Topic
Posted
Better yet 100+ gang on the mugger for capes