Leaderboard
Popular Content
Showing content with the highest reputation on 05/05/16 in Posts
-
About: I have made a bunch of goals here before but I actually plan to finish this one don't worry! Since late 2015 I have been making main accounts for sale, but have not made anywhere near the production I wanted since I started doing it. Hopefully making a thread to share with everyone will help with my motivation to make this 100 melee main goal happen. Big thanks to @Chuckle for making crazy goals that inspired me to do something like this! If interested in purchasing a main, send a pm! Max Main Counter: 5 (5/5/16) 7 (5/24/16) 8 (5/30/16) 9 (6/16/16) 10 (6/25/16 11 (6/30/16) 12 (7/4/16) 15 (7/22/16) 16 (7/23/16) 18 (8/5/16) 20 (8/8/16) 21 (9/10/16) 25 (10/5/16) 30 (11/1/16) 31 (11/12/16) 32 (11/25/16) Max Main Running Counter: 9 (12/4/16) Max Main Money Counter: $10k USD Fatty sale 7/8/16 (All Revenue Generated by Max Mains) (This goes up daily) Overall Goals: Create 10 Max Melee Mains Create 20 Max Melee Mains Create 30 Max Melee Mains Create 50 Max Melee Mains Create 100 Max Melee Mains YOLO Mini-Goals: Create 20 New Accounts 20 Accounts Ready to NMZ 20 Accounts Training in NMZ Timeline: Have 10 new accounts in Nmz by 5/14/16 Have 10 new accounts @ 70/70/70 by 5/21/16 Create 10 more accounts 5/21/16 Have those 10 newer ones in NMZ by 5/30/16 Too far to think ahead. Computer Specs?: i7 3770k 16gb Ram i7 2600 8gb Ram i5 2400 8gb Ram i5 4690k 8gb Ram F.A.Q: 1. Casper?!? What will you do with all these accounts? Sell them, rent them, stare at them, make love to them ? 2. Do you work on all these yourself? No way man, I am a full time college student. 3. Bots? Depending on a case by case basis, yes but not every account! 4. Woah?!? Bots? Yes! Hit my boy or @Eagle Scripts for that dank script plug. 5. Do you plan on making any other accounts? Yes of course! I have a bunch of fully quested pures and zerkers being worked on 6. Bro is this real? Where the pics at? I will post some in the morning! I cannot sleep... gg Supporters: If you like this thread, press the like button5 points
-
4 points
-
2 points
-
Orb support is almost ready, just need to handle the anti-pk and world hop features etc. and then it will be here As for humidifying clay, I gave you a trial, yes this bot supports it2 points
-
2 points
-
Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. BUY NOW $9.99 NEW! Added Both Wyrm Courses! SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results1 point
-
NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png1 point
-
CURRENT RECORD: 201 HOURS RUNTIME NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:1 point
-
JAD PRAYER SWAPPER Swaps prayers automatically so you don't have to! PRO TIP: When you activate the script, please make sure that the log is spamming "waiting for Jad to appear...", this ensures that the script is working and checking for Jad. IMPORTANT STEPS TO KEEP IN MIND: You can activate the script at any time during the fight caves, it will only swap your prayer when Jad is in sight. To ensure that Jad is in sight, make sure to kill the off colored orange level 360 LAST. Jad will spawn where the off colored orange 360 spawned. From there, the script should take over and swap prayers as needed, so long as Jad is in sight. When the script prayer swaps for you, it may cause your camera to jerk around. This is due to me allowing user input. TIME YOUR CLICKS ACCORDINGLY TO AVOID WALKING INTO JAD (Click to drink potions/attack Jad after each prayer swap). Lastly, I have it scripted so it can protect against melee. I DO NOT ADVISE YOU GET COMFORTABLE IN MELEE RANGE. I DOUBT IT WILL CHANGE FAST ENOUGH FOR JAD's QUICK MELEE ANIMATION. Download: http://uppit.com/7bk9h99h7l5x FULL DISCLOSURE: I've only tested the script once to help my stupid slow reflexes fight Jad. It worked so I'm not planning on doing another run anytime soon now that I have the fire cape. If you have problems with the script, then you're either doing some wrong or I fucked up. If I did fuck up, I'll fix it if possible when I have time. As a continuation of the point of above, if you have an issue please copy and paste the logger. I'm publishing this to you guys because I searched everywhere for a prayer swapper like this and couldn't find one, so I made this. IT IS BY NO MEANS AMAZING. I just made this barebones to swap prayers, nothing more. IT WILL NOT FIGHT JAD FOR YOU. Credits to this link for giving me the animation ids, saved me lots of work: http://osbot.org/forum/topic/61368-jad-attack-style-animation-ids/ Here's the stupidly simple code for you to hate: import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.ui.PrayerButton; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; //TzTok-Jad //MAGE(2656, Prayer.PROTECT_FROM_MAGIC, Color.BLUE), //MELEE(2655, Prayer.PROTECT_FROM_MELEE, Color.RED), //RANGE(2652, Prayer.PROTECT_FROM_MISSILES, Color.GREEN); @ScriptManifest(author = "GuiltyAsCharged", info = "Because reflexes suck hardcore.", name = "Jad Prayer Swaper", version = 1.1, logo = "") public class main extends Script { @Override public void onStart() { log("Let's get started!"); } @Override public int onLoop() throws InterruptedException { getBot().setHumanInputEnabled(true); NPC jad = npcs.closest("TzTok-Jad"); if(jad != null) { //begin prayer swapping //get animation if(jad.getAnimation() == 2656) { //swap to mage prayer log("Jad is maging."); prayer.set(PrayerButton.PROTECT_FROM_MAGIC, true); } else if(jad.getAnimation() == 2652) { //swap to range prayer log("Jad is ranging."); prayer.set(PrayerButton.PROTECT_FROM_MISSILES, true); } else if(jad.getAnimation() == 2655) { //swap to melee prayer log("Jad is meeleing."); prayer.set(PrayerButton.PROTECT_FROM_MELEE, true); } return random(100, 110); } else { log("waiting for Jad to appear..."); return random(100, 110); } } @Override public void onExit() { log("Hope you got the cape!"); } }1 point
-
Khal AIO Stronghold © Created by @Ericthecmh No longer being sold! Are you bored of training hours and hours to reach that lvl 99? Do you want to make some quick cash while training? Khal AIO Stronghold is your utimate solution to all your needs. Get insane exp while getting awesome profits NOW! GUI Preview: Current Features: - Supports any room and any monster in the Stronghold of Security! - Advanced antiban system - Full loot support - Food and banking support - Informative and decorative paint - B2P support - Bone burial fro easy prayer exp - Settings saving/loading - Eat food to make space for loot - Range support - Mage support How do I start this script? Reviews: Progress Reports (click spoiler to view more): Bug report format: Mirror or normal Version of OSBot client (number, not something like "latest") Description of bug report Description of how to replicate if possible Screenshot if possible1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Some things to note if you plan on upgrading in the future: 1) Invest in some artic silver thermal paste and an aftermarket cpu cooler. Don't ask why, you'll thank me later. 2) If you got some extra money to spend, splurge a bit on a more powerful PSU.1 point
-
This site looks straight up scam. buy that i5-4690K you'll get an I3-43401 point
-
1 point
-
1 point
-
1 point
-
when doing waterfall quest,why does it buy 20 falador teleports? https://gyazo.com/42ea54811ad667b5431d3621db9827291 point
-
1 point
-
Bought 21m, Vouch for Realist.1 point
-
1 point
-
hey really looking for a good bot to buy , a 24hr trial would help make a decicsion1 point
-
If the HP and Range were to be trained to a considerably good level before selling, I'll consider buying whenever you choose to. I'd say around 25-40m1 point
-
Hey Czar, there's a bug with mining at the crafting guild on f2p servers. When walking to the bank, the bot attempts to use a members only gate to the west of fallador. I was mining gold, not in mirror mode don't think that should matter to reproduce the bug. Thanks!1 point
-
I preciate it Czar your the man! your range guild got my zerker 40-94 range no bans over the summer... is it still that safe to use if i wanted to make a push for 99?1 point
-
Hello mate, i purchased your Czar range guild a while back on my old account level95, but i forgot the password, none the less would it be possible to get a trial on the mining script to see if i like it?1 point
-
@Gilles123 Can you try a mirror mode restart and tell me if it still doesn't work? It seems to be hit-or-miss with mirror mode, it's related to rs interfaces, http://osbot.org/forum/topic/97411-osbot-mirror-widget-bug/ it has been posted before, but the solution should just be a client restart (i hope). Let me know how it goes, I will be trying it also, if it still happens after a client restart, confirm it and I will try to find a workaround ASAP @Ciihan I will test Mine 1 drop 1 too, I previously tried it without a full inventory that's why I must've missed it next round of updates will be posted soon, latest version 0.70. thank you for the constant feedback, I really appreciate it guys, it helps increase the script's quality1 point
-
1 point
-
1 point
-
Get rekt! Don't bot accounts you're afraid to lose, simple as that1 point
-
1 point
-
Sweet, so you thought it'd be a really good idea to start botting suddenly on accounts which I assume had less than an hours activity on over a large period of time and thought you'd buy public script, use a public bot and bot for an extended period of time without any diversion tactics in place, or what is seems like any research into modern runescape botting. Chances are you used a VPN and got chained because people use them for all sorts of shit on Runescape. Meanwhile I'm sat here with my fully botted main because I'm not a dumbass and blames FREE programs such as OSBot for my own misconceptions of a reality that is well documented on the internet. If you want help seek it, research, read, trial and error; don't expect a pity party.1 point
-
1 point
-
1 point
-
I've tried the script and I loved it! Only problems I had was buggy cake thieving in ardy and not being able to use tea as food! The problem in ardy is that he runs too far away whilst getting bust and that he stands in the middle in the market trying to steal cakes and not in the "common" cake stealing spot! Anyways keep up the good work!1 point
-
Botting is not impossible...You just happened to be unlucky :P I've botted from 83-99 Strength, 30-62 agility, and currently 82-92 ranged (hopefully getting 99)1 point
-
New here, but looks like most people are very satisfied with your scripts so I bought a copy I will post proggies later. Thanks!1 point