Leaderboard
Popular Content
Showing content with the highest reputation on 08/05/18 in Posts
-
NEW! Added Gemstone Crab! 81 Hours at Cows Brutal Black Dragon support Sulphur Nagua support Blue Dragon 99 ranged 99 Ranged at Gemstone Crab 81 Range F2p Safespotting Hill Giants Hotkey List // F1 = set cannon tile // F2 = hide paint // F3 = Set afk tile // F4 = reset afk tile // F6 = Set safespot tile // F7 = activate tile selector // F8 = Reset tile selector // F9 and F10 used by the client, EDIT: will re-assign as they are no longer used by client // F11 = Set breaks tile // F12 = Reset breaks tile User Interface Banking Tab Demo (handles everything with banking) You can copy inventory (to avoid adding individual items...), you can insert item names which have Auto-Fill (for you lazy folk!) and you can choose whether to block an item and avoid depositing it in bank, ideal for runes and ammo. Looting Tab Demo (From looting to alchemy, noted/stackable items too) You can choose whether to alch an item after looting it simply by enabling a checkbox, with a visual representation. All items are saved upon exiting the bot, for your convenience! Tasking Demo (Not to be confused with sequence mode, this is an individual task for leveling) You can set stop conditions, for example to stop the bot after looting a visage, you can have a leveling streak by changing attack styles and training all combat stats, you can have windows alert bubbles when an event occurs and an expansive layout for misc. options! Prayer Flick Demo (Just example, I made it faster after recording this GIF) There are two settings: Safe mode and efficient mode, this is safe mode: Fight Bounds Demo Allows you to setup the fight bounds easily! Simplified NPC chooser Either choose nearby (local) NPCs or enter an NPC name to find the nearest fight location! Simple interface, just click! Level Task Switch Demo (Switching to attack combat style after getting 5 defence) You can choose how often to keep levels together! e.g. switch styles every 3 levels Cannon Demo (Cannon is still experimental, beta mode!) Choose to kill npcs with a cannon, recharges at a random revolution after around 20-24 hits to make sure the cannon never goes empty too! Results Caged Ogres: How does this bot know where to find NPCs? This bot will find far-away npcs by simply typing the NPC name. All NPCs in the game, including their spawn points have been documented, the bot knows where they are. You can type 'Hill giant' while your account is in Lumbridge, and the bot will find it's way to the edgeville dungeon Hill giants area! Here is a visual representation of the spawn system in action (this is just a visual tool, map mode is not added due to it requiring too much CPU) Fight Area Example (How the bot searches for the npc 'Wolf') Walking System The script has 2 main walking options which have distinctive effects on the script. The walking system is basically a map with points and connections linking each point. It tells the script where to go, and decides the routes to take when walking to fightzones. Walking system 1 This uses a custom walking API written by myself and is constantly being updated as new fightzones are added. Pros: - Updates are instant, no waiting times - More fightzones are supported Cons: - Sometimes if an object is altered, the changes are not instant - Restarting the script too many times requires loading this webwalker each time which adds unnecessary memory (there is no way to make it only load at client startup since I don't control the client) Walking system 2 This is the default OSBot webwalking API - it is relatively new and very stable since the developers have built it, but is currently lacking certain fightzones (e.g. stronghold) and other high level requirement zones. It is perfect for normal walking (no object interactions or stairs, entrances etc) and never fails. Pros: - Stable, works perfect for normal walking - All scripters are giving code to improve the client webwalker - More efficient when restarting the script since it is loaded upon client start Cons: - No stronghold support yet - Some new/rare fightzones not supported yet - If there is a game-breaking update or an unsupported fightzone, it may take some time to add/repair (less than 24 hours usually) So which system should I choose? Whichever one suits your chosen fightzone best! There really shouldn't be any problems - the sole purpose of these options are for backup and emergency purposes, if the script ever messes up there is always the next option to select. Note: If the script ever fails, there will be immediate updates to fix the walking systems! Script Queue/Bot Manager: Script ID is 758, and the parameters will be the profile name that you saved in the fighter setup! Bug Report templates: New feature request - What is the new feature - Basic description of what the script should do - Basic actions for the script: 'Use item on item' etc. For when the script gets stuck on a tile (or continuous loop): - Which exact tile does the script get stuck on? (exact tile, not 'near the draynor village') - Plugin or normal script? - Did you try all 3 walking options? Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug - How did you make the bug happen - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? - Normal script or a plugin? - Which exact setup options are enabled? Afk mode, cannon mode, etc etc.4 points
-
2 points
-
2 points
-
As tittle say, got dark days behind me, post joke , 3 best jokes win tommorow,no need to like spam bla bla. cheers Will give 3 twitch prime codes. 31 days member WINNERS- @D Bolter @Acerd @FuryShark2 points
-
I was able to successfully interact with a MySQL database from a script. I used XAMPP Control Panel v3.2.2 to handle Apache and MySQL locally. I used mysql-connector-java-8.0.11.jar as my SQL driver. I created a folder on my Desktop and put in the following: osbot-sql/ osbot-sql/lib/mysql-connector-java-8.0.11.jar osbot-sql/lib/OSBot 2.5.8.jar osbot-sql/Start OSBot with SQL Driver.bat The contents of the batch file is as follows: "C:\Program Files\Java\jre1.8.0_172\bin\java.exe" -cp "lib/*" org.osbot.Boot -debug The first bit "C:\...\..\..\" can be changed to just "java" if your running version of Java is compatible with OSBot. Mine isn't. If yours is, then you can simply do the following: java -cp "lib/*" org.osbot.Boot -debug Once the bot loaded, I then ran a simple test script to read from a table called "big_league" from my database. The test script is as follows: import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "", info = "", logo = "", name = "SQL Test", version = 0) public class Test extends Script { @Override public void onStart() throws InterruptedException { try { String host = "localhost:3306"; String db = "big_league"; String user = "root"; String pass = ""; String connStr = String.format("jdbc:mysql://%s/%s?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC", host, db); Connection conn = DriverManager.getConnection(connStr, user, pass); ResultSet results = conn.createStatement().executeQuery("SELECT `name` FROM `item`;"); while (results.next()) { logger.debug(results.getString("name")); } } catch (SQLException e) { logger.error(e); } } @Override public int onLoop() throws InterruptedException { return 50; } } And it worked. It printed out the 3 item names I had stored in my database. If a query works, then insert, update, delete, drop, etc. will also work too. Note: Your script won't be approved for SDN release because: SDN compiler won't have those libraries, so ClassNotFoundException will occur. Developers don't want to add bloat to OSBot that only benefits a few users. Potential licensing/legal issues using external libraries commercially, or redistributing them.2 points
-
Stealth Quester Can also be purchased with OSRS gold using vouchers from here 70 Quests Supported Alfred Grimhand's Barcrawl Animal Magnetism A Porcine of Interest Big Chompy Bird Hunting Biohazard Black Knights Fortress Client Of Kourend Clock Tower Cook's Assistant Death Plateau Demon Slayer Dorics Quest Dragon Slayer Druidic Ritual Dwarf Cannon Elemental Workshop I Ernest The Chicken Fight Arena Fishing Contest Gertrude's Cat Goblin Diplomacy Hazeel Cult Holy Grail Imp Catcher Jungle Potion Lost City Merlin's Crystal Monkey Madness I Monk's Friend Mountain Daughter Nature Spirit Pirates Treasure Plague City Priest In Peril Prince Ali Rescue Regicide Rfd Cook Subquest Rfd Dwarf Subquest Rfd Evil Dave Subquest Rfd Goblin Subquest Rfd Pirate Subquest Rfd Ogre Subquest Romeo And Juliet Rune Mysteries Sea Slug Shadow Of The Storm Sheep Shearer Tears Of Guthix The Ascent Of Arceuus The Corsair Curse The Depths Of Despair The Dig Site The Feud The Golem The Grand Tree The Knights Sword The Restless Ghost The Tourist Trap Tree Gnome Village Tribal Totem Underground Pass Vampire Slayer Varrock Museum Quiz Waterfall Quest What Lies Below Witch's House Witch's Potion X Marks The Spot Instructions Click on quest names to queue them. Quests are completed in the order they are selected. Quests that are already completed will be skipped. Previously started quests/partially completed are not currently supported! Allow the script to finish the quest from start to finish for best results. In order to use armour/weapons/spells during quests, gear presets have to be created first. Equip the desired gear and set the attack style in game, then press the "Load Worn Equipment" button at the bottom left of the GUI, then give the preset a name. Click on the "Set Gear" button on the right side of a quest to set the gear preset to be used for that quest. If you want to use a combat spell for fights, make sure you are wielding a staff and have set the spell on offensive autocast. Only normal spells are currently supported. Ranged is not fully supported at this moment. Make sure you set the desired attack style in game to avoid gaining wrong XP. After selecting the desired options, either press the "Start" button to begin, or save the current settings by pressing "Save Current Settings" and giving the quest preset a name, and later running it faster by pressing "Run Saved Preset". You can delete gear/quest presets by right clicking them on the selection dialogue Special Mentions The script will stop upon death on all quests, except for Waterfall Quest. It is strongly recommended that you have decent Hitpoints level (20+) before attempting quests that contain boss fights. The script may not be able to continue previously started quests. If you really have to restart the script while it's doing a quest, use debug mode to continue that specific quest. This feature is accessed by pressing the F4 key while the GUI is in the foreground (focused application). The GUI title will change to Stealth Quester (debug mode) while in debug mode, and when started will not go to bank or Grand Exchange so all required items are assumed to be in the inventory. Monkey Madness I has a hard-coded requirement of 43 Prayer and 25 Hitpoints Underground Pass has a hard-coded requirement of 25 Hitpoints, and will use a bow as weapon. By default the script will use willow shortbow & mithril arrows. This can be configured on GUI throgh the "Configure Settings" button on the right side of the quest. Protect from melee will be used during the paladin fight if the account has 43 Prayer. The script will not use any weapon or ammo you set in the gear preset for this specific quest, as they will be replaced with a bow and arrows, and the attack style will be set to rapid. The script can complete this quest with level 1 Agility. The ability for the script to complete the quest will be limited by available food sources if it fails too many obstacles prior to reaching Iban's Lair where unlimited food is provided. Beta Testing Mode Enabled via script GUI using F3 key during startup Make sure the GUI window is focused and press F3 The quests which are currently in beta testing stage will be displayed on the list of available quests Debug Mode Enabled via script GUI using F4 key during startup Make sure the GUI window is focused and press F4 Title will change to Stealth Quester (debug mode) This can be used to resume the script execution after being interrupted. It is not guaranteed to work in all cases, but will work for over 95% of quest stages. You can also use this if you don't want the script to check bank/go to Grand Exchange. This means that you must have all items required by the script (not by quest guides), including the specific teleports it uses. It may work in some cases without teleports, but there is no guarantee. Ironman Mode Enabled via script GUI using F5 key during startup Make sure the GUI window is focused and press F5 Title will change to Stealth Quester (iron man mode) The script features a special ironman mode where it will automatically gather all required items. This mode supports at the present moment the following 9 quests: Cook's Assistant Romeo and Juliet The Restless Ghost Rune Mysteries Ernest the chicken Hazeel Cult Clock Tower The Corsair Curse X Marks the Spot No Food Mode Enabled via script GUI using F6 key during startup Make sure the GUI window is focused and press F6 Title will change to Stealth Quester (no food mode) Can be used for high level accounts when you are 100% sure you won't need food on some quests. There are quests like Underground Pass, Regicide, Monkey Madness, Shadow of the Storm, Holy Grail, Dragon Slayer and possibly others where this will not work. The script will stop when it fails to find food in bank in these cases. CLI Features Script ID is 845. The script supports CLI startup with custom user defined parameters. The parameters in this case are the name of the quest presets created on the GUI (with "Save Current Settings"). eg. -script 845:questpreset Bug Report Template 1. Stealth Injection or Mirror Mode: 2. Logger contents (press "Settings" on top right corner of the client, then "Toggle Logger", copy & paste on pastebin) : 3. Description: Skills required to run all quests: 51 Agility 49 Firemaking 41 Cooking 36 Woodcutting 35 Runecrafting 31 Crafting 30 Ranged 30 Thieving 20 Attack 20 Mining 20 Smithing 18 Slayer 12 Hunter 10 Fletching 10 Fishing The script can obtain a total of 117 QP on member worlds and 41 QP on free to play worlds. Additional Info by @krisped1 point
-
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
-
────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - £3,99 | Chest Thiever - £2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌡ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌡ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.1 point
-
Released as VIP+ An advanced selection-configured ore miner supporting both Power-mining and Banking Features: Custom rock selection interface allows you to exclusively tailor the script to your needs Banking support - the script will calculate a route to any selected bank using the OSBot web Easy to configure re-sizeable setup GUI housing the custom rock selection panel: Powermine feature with support for both 'Mine-one-drop-one' and 'Drop when inventory is full' modes Randomised rock prioritisation means the script will never mine rocks in a repeating order Option to keep gems mined in inventory Dragon pickaxe / Infernal pickaxe special attack support. Smashing! Option to move mouse outside of the screen while idle (not recommended unless mining something slow!) Informative self-generating paint with hourly rate data to accurately track your progress Option to stop at a specific target mining level Requirements: A pickaxe for which you have the level to use, either equipped or in your inventory. If you wish to receive gems more frequently (1/86 instead of 1/256) while mining, consider equipping an Amulet of Glory. Setup Guide: Add the script to your collection via the SDN Start up OSBot (or refresh your scripts list), then run the script After the GUI (startup interface) shows up, enable human input by cycling the input button next to the pause/stop buttons Select the rocks that you wish to mine via the game screen: Make sure that the rock is not mined when you select it. Make sure the rock tile is outlined on-screen and the rock data appears on the GUI. You can remove rocks either by deselecting them in-game, or by manually removing them from the GUI. Currently selected rocks are highlighted in cyan. Disable human input once you have selected your desired rocks (Settings>[check] disable input) Configure the settings tab to your liking If banking, be sure to select the closest bank to your mining location. Note that the banking code relies on the OSBot web-walking system, which can sometimes take a few seconds to calculate a route. Start the script with the button at the bottom of the GUI Relax Screenshots:1 point
-
Anyone have some good book recommendations? Into non-fiction mostly. Not that interested in fiction or sci-fi, even though I've read some before. What's your favorite book?1 point
-
I'm going on a vacation for a few days and I'm pretty sure a specific person is trying to scam in my name! (No names mentioned) Always request a pm from me if you find a sweet deal made in my name. (I will not do any trades within the closest 10 days). My Skype name is Im.fishy and I very rarely deal on discord (my name there is not related to a fish.) If u want my discord pm me. Stay safe!1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Lol been hearing a lot of talk about the similarity recently. I blocked him a while ago. He has so much stuff that I can spend forever talking about lol. I just leave him be. ATF? Title sounds like Dante’s inferno lmao. The kids book? Sci fi magic?1 point
-
1 point
-
1 point
-
Working well so far also support though discord channel was very helpful.1 point
-
1 point
-
Here is my entire console log. I am on duel monitors if that is making a difference. (I am also on Mirror mode) [INFO][08/05 02:44:30 AM]: Loaded 4 RS accounts! [INFO][08/05 02:44:30 AM]: Welcome to OSBot 2.5.8! [INFO][08/05 02:44:42 AM]: Updated injection hooks for client revision : 172! [DEBUG][Bot #1][08/05 02:44:42 AM]: Initializing mirror client bot... [INFO][Bot #1][08/05 02:45:36 AM]: Initializing 36 API modules... [INFO][08/05 02:45:36 AM]: Started bot #1 [INFO][Bot #1][08/05 02:45:36 AM]: [Break Manager] After botting for 248 minute(s), you will break for 63 minute(s). [INFO][Bot #1][08/05 02:45:36 AM]: Loaded 4 built-in random solvers! [INFO][Bot #1][08/05 02:45:38 AM]: Started random solver : Auto Login [INFO][Bot #1][08/05 02:45:45 AM]: Random solver exited : Auto Login [INFO][Bot #1][08/05 02:45:49 AM]: Started random solver : Auto Login [DEBUG][Bot #1][08/05 02:45:49 AM]: Login Code: 12 [ERROR][Bot #1][08/05 02:45:49 AM]: Unknown login response; script stopped! [INFO][Bot #1][08/05 02:45:49 AM]: Terminating script Perfect Crabs... [ERROR][Bot #1][08/05 02:45:49 AM]: Error in script onExit(): Perfect Crabs java.lang.NullPointerException at perfect.scripting.LoopScript.a(wg:408) at perfect.scripting.LoopScript.onExit(wg:347) at cOn.onExit(yk:2052) at org.osbot.rs07.event.ScriptExecutor.iiIiiiiiIiiI(kl:294) at org.osbot.rs07.event.ScriptExecutor.stop(kl:329) at org.osbot.rs07.event.ScriptExecutor.stop(kl:324) at org.osbot.rs07.randoms.AutoLogin.onResponseCode(om:268) at org.osbot.rs07.Bot.executeListenerEvents(wj:375) at org.osbot.rs07.event.RandomExecutor.run(ck:43) at java.lang.Thread.run(Unknown Source) [INFO][Bot #1][08/05 02:45:49 AM]: Script Perfect Crabs has exited! [INFO][Bot #1][08/05 02:45:49 AM]: Random solver exited : Auto Login [INFO][Bot #1][08/05 02:59:32 AM]: [Break Manager] After botting for 220 minute(s), you will break for 56 minute(s). [INFO][Bot #1][08/05 02:59:32 AM]: Loaded 4 built-in random solvers! [INFO][Bot #1][08/05 02:59:35 AM]: Started random solver : Auto Login [INFO][Bot #1][08/05 02:59:40 AM]: Random solver exited : Auto Login [INFO][Bot #1][08/05 02:59:44 AM]: Started random solver : Welcome Screen [INFO][Bot #1][08/05 02:59:48 AM]: Random solver exited : Welcome Screen [INFO][Bot #1][08/05 02:59:53 AM]: Terminating script Perfect Crabs... [ERROR][Bot #1][08/05 02:59:53 AM]: Error in script onExit(): Perfect Crabs java.lang.NullPointerException at perfect.scripting.LoopScript.a(wg:408) at perfect.scripting.LoopScript.onExit(wg:347) at cOn.onExit(yk:2052) at org.osbot.rs07.event.ScriptExecutor.iiIiiiiiIiiI(kl:294) at org.osbot.rs07.event.ScriptExecutor.stop(kl:329) at org.osbot.rs07.event.ScriptExecutor.stop(kl:324) at org.osbot.Mb.run(rz:204) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) [INFO][Bot #1][08/05 02:59:53 AM]: Script Perfect Crabs has exited! [INFO][Bot #1][08/05 03:02:07 AM]: [Break Manager] After botting for 239 minute(s), you will break for 55 minute(s). [INFO][Bot #1][08/05 03:02:07 AM]: Loaded 4 built-in random solvers!1 point
-
Best of luck with that ? Better see you with your own script shop one day lol1 point
-
[INFO][Bot #1][08/05 01:10:06 AM]: [Break Manager] After botting for 245 minute(s), you will break for 63 minute(s). [INFO][Bot #1][08/05 01:10:06 AM]: Loaded 4 built-in random solvers! [INFO][Bot #1][08/05 01:10:31 AM]: Terminating script Perfect Crabs... [ERROR][Bot #1][08/05 01:10:31 AM]: Error in script onExit(): Perfect Crabs java.lang.NullPointerException at perfect.scripting.LoopScript.a(wg:408) at perfect.scripting.LoopScript.onExit(wg:347) at cOn.onExit(yk:2052) at org.osbot.rs07.event.ScriptExecutor.iiIiiiiiIiiI(kl:294) at org.osbot.rs07.event.ScriptExecutor.stop(kl:329) at org.osbot.rs07.event.ScriptExecutor.stop(kl:324) at org.osbot.Mb.run(rz:204) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) [INFO][Bot #1][08/05 01:10:31 AM]: Script Perfect Crabs has exited! [INFO][Bot #1][08/05 01:10:48 AM]: [Break Manager] After botting for 249 minute(s), you will break for 54 minute(s). [INFO][Bot #1][08/05 01:10:48 AM]: Loaded 4 built-in random solvers! For some reason I am unable to run the bot!1 point
-
1 point
-
1 point
-
I actually didn't test how much per hour I was getting, I only made this script with the intent of getting from 5-20 crafting so I could bot sapphire rings, sorry my dude, if I get time tomorrow I'll add an overlay for it to display rings/hour1 point
-
No account gets banned for using just this script. Please stop trying to blame something that does it jobs in 10 minutes or less.1 point
-
The bot doesnt seem to find the gloves of silence in your bank, while pick pocketing knight of ardougne it freezes once the gloves of silence runs out and tries to replenish itself. I have 30 in my bank for the bot to replace itself. Some of the logs of the bot: https://gyazo.com/8d67c9ae0c6904673a9682ba8b01477c1 point
-
1 point
-
1 point
-
just a question may be a bug, its switching between combat interface and the inventory interface dunno if this is a bug or its suppose to happen so just letting you know and it does look a bit weird1 point
-
1 point
-
1 point
-
1 point
-
@Czar i'm having issues with thieving ardy knights.. sometimes if goes through an entire inventory of food before banking and sometimes it only uses half an inventory.... Other issues I'm having is the running back part from banking.. It will withdraw the food then sit there and not move1 point
-
Only had the trial, didn't want to swap gloves and gaunlets so i just used a bucket1 point
-
1 point
-
Age 10 I met my bestfriend, yo bro i play runescape [i was a lvl 90 1.2k total lvl pleb playing already].... he tells me about bots we start our own goldfarm ....... i make 250$ buy a dell optiplex for botting ........... (2008~) age 12-14ish: dicing i start dice botting making 100-300$/day(for3-5 months b4 removal) automatic dicing using a max main rs3 account and renting a partyhat (2010~) I also turn 100m rs3 into 4.5b rs3 at the duel arena on pure luck age 15: beezmans get a job my mom says "i tell my mom im gonna pay for my college before i go" also begin pid whoring rs3 staking( you mass login and out till you get first hit in stakes profit was like 30m-50m rs3/hr if you had 500m minimum) (2011) age 16: start selling counterfeit dr.dre beats/powerbalances in school (2k profit in 1 month)/farm frost dragons with idungeon (3m eoc/hr eoc was .25-.3/m) (2012) note: I dungeon was the best script ive ever used/ rsbuddy was the best botting client ive ever used rest in peace jacmob (idungeon would get you 99 attr/str/def/range/magic/prayer in 1-3 months (1 month without prayer from a lvl 3) age 17: i use ******** staker pulling in over 2.5b 07 (batman is my name) (also merch botted/ did a lvl 3 method making 100-200m 07/day) Join bigboibets as a chip cashier (making 25m-50m rs3/hr + zinc gave me bonus's weekly of 100m-1000m rs3 {end up getting deranked longstory} (2013~) age 18: commission stake on osrs making 15m-40m 07/hr king of W301 I also meet future best friend @Nike who i end up meeting 3 years later in real life (2014~) age 19:go to college (2015-2016) also own 10-100~ bitcoins at this point (summer before college odds stake runescape making 5k-10k all summer) (all bitcoins are sold aswell i didn't hold) age 20: freshmen summer of college make 25k in 45 days staking (2016) age 21:dont odds stake much make like 9k all summer (2017) age 22: stake 40 days pull in around 15k, have college fully paid off, multiple crypto currencies holding which could cause me to retire, and am aiming at graduating in 3.5 years with a 2.8 gpa, also fund the creation of a failed ios app which was made for a popular video game (cost 1.5k).... (2018) ........................................................................................................................................................................................................................................................................................................................... Future goals below/ending statements/gallery of amazing pictures. age 23: (2019) become a business owner/ app developer/ crypto currency investor / retire from runescape black market much love to osbot/pb/sythe/tri/top/rsbuddy/kiko/ @Kaii / @Arcus / @jackshow / ***#1 @Muffins / @Semp / @Chris / and even @Alek you cheeky asshole . special love to @Chuckle when i was 12-13 years old i came across him and he taught/mentored me along the way what an amazing friend niall was and a helping hand in so many manners i can't begin to say the respect i have for him. special love to @Mikasa he fronted me 500m 07 in 2015-16 when i had no cash to buy at the time and he really helped me alot brother pm me soon i wanna get you're cell phone special love to @Nike nike fronted me multiple times and helped me alot also he is one sexy motherfucker in real life lemme tell you his brain is a engineers and a body of a greek god pm me for nudes ending statements: None of the above was because of luck i didn't pull in a big income from a video game on luck. Sure there was luck involved in meeting the right people, but i talked to them asked them questions and provided value, I was a product of hard work and dedication if you want something bad enough you'll go get it and i wanted it bad enough to pay off my college so i went and found out how to do it.To anyone who comes across this post God bless and best of luck. ~ @Beezmans ***** note i made alot of gold i also have over 25k in accounts/gold banned if not more****** ***** along the way i failed Alot/ years might be off by 1-2 years ***** saved for photo gallery: when i have time1 point
-
1 point
-
1 point