Everything posted by Satire
-
Satire's Runescape account creator [Automated script launching] [Multi-Script launching] make your farm fully automated!
The Best Creator on the Market, with tons of features! For vouches view my feedback and thread replies (unfortunately, many of them didn't leave any ) EDIT: Sales are now open again, please re-send a skype request or PM me again and I'll add you. Price: $40USD or 55M. Payment type: Bitcoin, OSRSGP Video This requires 2Captcha! What is 2Captcha? It's a service which solves captcha's for you. They charge $3/1000 captchas solved. It's similar to Death by captcha but cheaper. You must set usernames for the program to use in usernames.txt You are supplied with a big list, but using your own will reduce the amount of times you'll get "Display name taken". Features Uses 2Captcha. Random email extensions (legit and non-legit) @yandex.com,@@hotmail.com,@@gmail.com,@hotnail.com@gnail.com,@yawndex.com (fake ones are good for suicide bombers) Random usernames (Customizable options) Time to wait timer (Set the amount of minutes to wait before trying again after ip ban (if proxies is disabled)) Read randomly from text file + Read normally from text file You can either choose to read from top to bottom or read in a completely random order. Use emails from text Note: This will require you to have an extension in the text i.e hello@@hotmail.com as it disables random email extensions. Speed of account creation ( This varies on pc's and also on internet speed and workers captcha solve time.) Slow (increase the amount of sleeps the program will take to reduce bans + increase success rate of captchas) Fast (decreases the amount of sleeps the program will take + uses 2 threads instead of one (may be slow depending on how fast captchas are solved by the workers). Proxies HTTPS proxies only (C# doesn't naively support SOCK5, yet). Tools tab Everything with (s) means coming soon. Proxy Checker Email Gen (generate your own email names with any prefix! Does not create the emails though). Username checker (inaccurate and will find a better link to check accounts). Soon to have a lot of other features. Banned account checker! (uses 2Captcha) mass checks your accs for any bans. CLI (Botclient Command Line support) CLI is now supported for Osbot client. This will automatically run a script (tut island) after an account has been created! The script is not provided by me! You will need to use your own. Run Multiple scripts at once! Tut island, quest bot, botfarming script! Make yourself lazier! Status Check realtime status. Autosaves to accounts.txt and displays a list of current accounts created with User,email,password and IP it was created on (if proxies are on). AND MORE! Load proxies, usernames (wordlist) and emails from anywhere! You can now choose the location of the txt files and it will autosave. It will also show you the current path when right clicking the button! There is also a help tab with an explanation of what each thing does. Get logs of each account creation with IP, user and email. Gives you the time every time you start the checker. Custom colors. Choose from a variety of colors in the settings tab. AUTOSAVE! Save all checked options and have full control of what toggles you save! (All files in creator settings you open will automatically save). Once purchased, you will get a copy of this program and anything from there on out is all on you! You are responsible for any damages you cause and I am not reliable to anything you do. I will also help anybody if they have problems with the program. If I'm offline, please do no spam me as I also have a life and may not always be there to assist you. You can add my skype: Akbar.io or click this A few vouches (couldn't paste them all because this thread would be too long).
-
Querying Process Modules
When I was learning c# (first time learning a language after c++), I tried to do it all manually and added pointers 'n' shit. I was wondering why I got so many syntax errors and I asked someone why. They told me that it's already done for you behind the scenes. C++ is really good for people who like making their own functions to do a certain job. Personally, I'd only use c++ if it was a hack for a game (and needed to be undetected) and games. Because c# is already there if you want to make programs without having to worry about memory. Lucky for me, my uni taught my c first before anything! I think it is more ideal to learn c first because you get to understand programming and how it's all done. When going over to another language, you'll be able to say, "Hey, I know how this works behind the scenes".
-
Querying Process Modules
NO! Java is used for RS/RSPS. C++ is good for creating hacks for games (so is C#). C++ is 100% manual meaning you have to define everything even the MEMORY allocation! I highly suggest you learn a bit of c before moving into c++. c is just c++ but without classes. If you want to do scripting/rsps coding then java is the only language you need to know.
- How to end a script?
-
Always Buying all 07 Gold | iminjured15 on Skype
Added, I've got 17m here.
-
rs old school Account creator?
80 what? $80 or 80M? Either way, rip-off. Unless it's multi-threaded with proxy support then no deal to him.
-
Explv's Tutorial Island [Free] [Random Characters]
Can u add script params so it starts automatically? I don't really use Multi-Acc and it would make my life easier not spending that extra second pushing start.
-
Buying lvl 3 with tut island completed
Still need some accs? What's the price for 7qp's and without? I can make em GE ready, just depends on the price to see if it's worth my time.
-
Get rsbuddy pro for free
Thanks man, I downloaded and ran the file. Now i'm super duper rich with the free cracked version of Rsbuddy. It's the best botting program out there, I suggest you try it out!
-
GUI checkbox wont disable other GUI options
I guess that's a lesson learned for the future Glad you got it working.
-
GUI checkbox wont disable other GUI options
chckbxAutoGE.addItemListener(new ItemListener() { @[member='Override'] public void itemStateChanged(ItemEvent e) { if(e.getStateChange() == ItemEvent.SELECTED){ spinnerHides.setEnabled = true; }else{ spinnerHides.setEnabled = false; } } }); This should work. Literally from my project, just renamed to your scenario. This should work, else you will need to see what you've done wrong. There is something in your project that is disallowing this to work. If the first condition isn't met, then it go false.
-
Configs/tasks for basic quests (incl. Tutorial Island) [7qp quests covered]
The ids helped me out, thanks!
-
Selling 24m 0.90/m BTC only
10m... I was sleepy and didn't realize I added the $(its out of habit).
- Selling 24m 0.90/m BTC only
-
Basic Java Notes
This should indeed help beginners. I had a sheet similar to this when I was learning c++. It is very helpful!
-
Want to buy as many gold bars as I can...
why don't you just get the amount of coins in your inventory. Then get the price of the ore from RSbuddy, then * the price by amount of ores you want, then check to see if you have enough coins? Or you could do it the opposite way and calculate how many ores u can get with the amount of money you have. Make sure barsTobuy is getting the right value. It seems like it isn't. Debug it step by step to see what's going on. I cbf writing it all up normally so I hope you understand. getinv = getInventory etc... long coins = getinv().getamount("Coins"); get price of item oresToBuy = (int)coins/price of item; which would = the amount u can get, sum it down to an int to get that value. You can use this code to get the price of the item This code is from another user, you can find it somewhere ( I forgot where). public class PriceHandler { /** * The URL of the API endpoint. */ public static HashMap<Integer, Integer> cache = new HashMap<Integer, Integer>(); public static String getData(int itemID) { try { StringBuilder sb = new StringBuilder("https://api.rsbuddy.com/grandExchange?a=guidePrice&i="); sb.append(String.valueOf(itemID)); InputStream inputStream = new URL(sb.toString()).openStream(); InputStreamReader inputStreamReader = new InputStreamReader(inputStream); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); String line; while ((line = bufferedReader.readLine()) != null) { if (line.contains("{")) { sb = new StringBuilder(line); //Remove { and } sb.deleteCharAt(0); //sb.deleteCharAt((line.length() - 1)); return sb.toString(); } } } catch (Exception e) { return e.getMessage(); } return null; } public static String[] parseData(String data) { ArrayList<String> holder = new ArrayList<String>(); String[] parts = data.split(","); //Now we have strings in format "x":y for (String s : parts) { s = s.replace("\"", ""); //Remove " - now in format x:y holder.add(s.split(":")[1]); //Extract y from format x:y } String[] ret = new String[holder.size()]; return holder.toArray(ret); } public static int getPrice(int itemID) { if (itemID == 995) return 1; if (cache.containsKey(itemID)) { return cache.get(itemID); } String[] data = parseData(getData(itemID)); int price = Integer.valueOf(data[0]); cache.put(itemID, price); return price; } }
-
Bot session expired due to inactivity
You need VIP to run multiple clients. You don't have VIP so it will always kill the current bot running to allow the second session to run. EDIT: Maybe I should read a bit more. That means someone is trying to run an instance from your account. Try changing your password and see if that still happens. Maybe someone has access to your account? Or you have the botclient running without any scripts running? I think it may have a timeout for that.
-
MIO CHOKE ON WATER
I'm amazed you have the dedication to update this thread Nice job, you've come a long way though. It's always better to make your script than to buy one because you have complete control over it!
-
Cannot decrement price by -5% (in Grand Exchange) using widgets!
It works! Thank you so much!
-
Cannot decrement price by -5% (in Grand Exchange) using widgets!
I should seriously stop posting at night! Yea, that was my bad. I see now, I will check it out now and hopefully it'll work. I will start searching for widgets!
-
for the 90's babies
So much memories. Back in the day when movies were good!
-
Cannot decrement price by -5% (in Grand Exchange) using widgets!
OSBot Version (do NOT put "current version", be specific) 2.4.102 2. A description of the issue. Include relevant logs. So first of all I thought it was my code but then I realized it wasn't. No matter what widget I use, it still doesn't do anything. Using https://puu.sh/sSe3M/c432cb5bcc.png 465,23,10 Using https://puu.sh/sSe58/b54609158b.png 465, 24,50 Both of them don't seem to work. I called them both with widgets.interact(465,23,10,"-5%"); and widgets.interact(465,24,50,"-5%"); Then it goes all weird, the mouse goes crazy then it sells the item without decrementing the price (and it waits there endlessly as it doesn't sell). So I'm not sure what's up with that, am I doing something wrong? If you want to know, I use Slot_2 for selling my items. If you want a video about it, I can supply. But If you try it on your own, you'll see that it screws up. I tried with "5%", "-5%" and "%" (just for the lulz to see if it would change) and nothing changed. I'm still not sure what's wrong though. 3. Are you receiving any errors in the client canvas or the logger? Nope 4. How can you replicate the issue? by calling widgets.interact(465,23,10,"-5%"); or widgets.interact(465,24,50,"-5%"); 5. Has this issue persisted through multiple versions? If so, how far back? Not sure, only tried it with 2.4.102
-
Does 3D count as graphics?
Yes, 3D counts as graphics. EDIT: Lol, that's pretty neat! Nice.
-
post farming idiots
Why do they spam though? Is there a post count limit to using the bot or something? or is it just for their "Fun"/getting trusted on the forum... EDIT: Fly had answered it. That's so freaken sad lol. What a bunch of kids.
-
post farming idiots
Or give them a post limit of 5 until the member has a total of 24 hours signed up or has been signed up for 1 week total. And then ban the spammers if it continues?