Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/11/17 in all areas

  1. I see we like to compare dick sizes in this community.
    5 points
  2. Well first of all, even if this was the case, you didn't fix anything. Your dev did. Second of all, I'm sure an intelligent individual such as yourself could understand why it's very hard to believe someone who constantly lies and exaggerates about the things they do and the amount of money they really make off RS. "Yeah I don't get bans but I also only make 300m/day" Not once in the 4 years that osrs has been out have I seen multiple people from different bot communities all of a sudden start getting mass locked accounts from tutorial island. What you're saying makes it seem like Jagex added some sleeper cell antiban last year which is just now becoming active.
    5 points
  3. Edit: 2/11/2017 11:32 PM - I'm currently able to bot accounts without them getting locked. A fix is out there, may the odds forever be in your favor If anyone is currently out of the loop, Jagex has now made it extremely difficult to create accounts by locking just about every single account that is put through tutorial island whether it is handmade or botted. I've been doing some testing to figure out what exactly is going. I have not had anyone confirm anything by looking through client code to see if something was added, this is all based of what I'm noticing first hand. The following will get your account locked after completion of tutorial island: Running an account through tut by hand via a proxy. Running an account through tut by bot via a proxy. Running an account through tut by hand via a VPS. Running an account through tut by bot via a VPS. The above applies to any game client or web browser Your account will NOT get locked IF: You run it through tut island by hand via your HOME IP The above applies ONLY if the account you are running through by hand was created within the same country/geographical location. Ex: if someone who lives in the UK registers an osrs account and gives the login info to someone who lives in the US and that person runs the account by hand through his home IP, the account will still get locked. (This was tested a few times) If you create an account on your Home IP and also bot it on your home IP, by the looks of it, they don't get locked but rather banned. If you create an account on a VPS and run an account through tut by hand on the same VPS (IP never changes) you will get locked. There currently ARE ways to run accounts through tut via a proxy or VPS by hand and NOT get locked. There are certain things I can do to make the account either locked or not locked upon completion. I have not yet implemented the same thing into a script to stop the locks by botting but by hand there is currently a way(s) around it. The detection they are using is most definitely 100% bypassable and it is script sided. The only "quick fix" as of now would be to create accounts on your home IP and handmake them which unfortunately is not what most people would like to hear. If anyone else would like to share info or correct any of the above, feel free to do so.
    4 points
  4. Just pushed an update, version 2.02! I've added lots of changes based on feedback, here are most of them (may have forgotten a few!) Version 2.02: Added support for multiple potions! Hold ctrl or shift to select multiple potions from the list in the Gui. Speaking of Guis... here's the new one below! In other news, there is now an option to always move the mouse outside of the screen when the script is idle. This option is designed to simulate a player being AFK, so it's probably best to disable camera movements aswell, or atleast decrease their frequency. Prevented the cursor/mouse trial being drawn when the mouse is outside the screen Reworked special attack activation to make it less intrusive to the running of the script Prevented the script attempting to loot ammo when at the bank/banking Adjusted the gui inventory space calculations to accomodate for the new potion options. Please double check your settings before you run the script! (make sure you've configured for only 28 inventory slots, while I added calculations, it may still go wrong for whatever reason) Minor changes to banking Dropping junk now has a delay following the action to avoid any spam-clicking Re-recorded the crab claw isle 3 path to prevent it failing to refresh the crabs ... and probably some more stuff which i've forgotten. Enjoy! should be available within the next few hours once the devs get around to pushing it live! ~apa
    3 points
  5. Feels like those weird US reality shows where they just start fighting... Anyway, to stay on topic, don't get your hopes too high. If I were to find a solution, I wouldn't share it. I believe anyone who truly tries to goldfarm and especially those who already successfully goldfarm, wouldn't. Like juggles said: "F2p is so much better to bot now with way less botters" <- that's an opportunity, use any useful info you can find, test it yourself, step up your game and seize it. Don't forget that by helping others publicly, you also expose jagex to this info.
    3 points
  6. I think we can all agree that something has been changed by jagex, and that more accounts are now being locked after being made on vps/proxies. This feud you guys have started isn't accomplishing anything. If you guys have this much free time to argue you could just as easily put it to good use somewhere else, or make yourselves happy in a different way. The only thing I've noticed out of either of you after reading through all these comments is that neither of you are mature enough to simply ignore the other and not comment on each others posts. I believe this section "Botting & Bans" was made to talk about reasons for bans not your guys monthly profit margins.
    3 points
  7. This is great fun, keep the bashing going!
    3 points
  8. public enum StrongholdQuestion { PHISHER("A website claims that they can make me a player moderator if I give them my password. What should I do?", "Don't tell them anything and inform Jagex through the game website"), STAY_LOGGED_IN("Can I leave my account logged in while I'm out of the room?", "No"), COOL_ADDON("My friend uses this great add-on program he got from a website, should I?", "No, it might steal my password"), LEND_ACCOUNT("My friend asks me for my password so that he can do a difficult quest for me", "Don't give him my password"), RECOVERY_QUESTIONS("Recovery answers should be..", "Memorable"), RECOVER_QUESTIONS_USED_FOR("What are your recovery questions used for?", "To recover my account if i don't remember my password"), BANK_PIN("What is a good example of a Bank PIN?", "The birthday of a famous person or event"), FREE_MEMBERS("What do you do if someone asks you for your password or recoveries to make you a member for free?", "Don't tell them anything and click the Report Abuse button"), MOD_PLS("What do you do if someone asks you for your password or recoveries to make you a player moderator?", "Don't tell them anything and click the Report Abuse button"), LOTTERY("What do you do if someone tells you that you have won the RuneScape lottery and asks you for your password and recoveries to award your prize?", "Don't tell them anything and click the Report Abuse button"), KEYLOGGER("What do I do if I think I have a keylogger or a virus?", "Virus scan my computer then change my password"), DETAILS_PLS("What do I do if a moderator asks me for my account details?", "Politely tell them no then use the report abuse button"), DEY_GOT_MY_RECOVS("What should I do if I think someone knows my recoveries?", "Use the recover a lost password section"), CHEATS("Where can I find cheats for RuneScape?", "Nowhere"), ENTER_PASSWORD("Where should I enter my password for RuneScape?", "Only on the RuneScape website"), BLOCK_PIN("Will Jagex block me for saying my PIN ingame?", "No"), GIVE_PASSWORD_PLS("Who can I give my password to?", "Nobody"), CHANGE_PIN("Who can I give my password to?", "Nobody"), WHY_RECOVER("Why do I need to type in recovery questions?", "To help me recover my password if I forget it or if it is stolen"), ; private final String question; private final String answer; StrongholdQuestion(String question, String answer) { this.question = question; this.answer= answer; } public String getAnswer() { return answer; } public String getQuestion() { return question; } } Not sure if questions r still accurate
    3 points
  9. I see jackshow is showing off how big his penis is again. When do we get to the amount of hookers he's fucked?
    2 points
  10. one thing for sure though, im currently getting fucked by jagex
    2 points
  11. We all know jack is / acts like a fag. Don't really care how much he makes as it doesnt change the first part unfortunately. I'll take 10$ a day, but I still wouldnt act like he does even if i made 1000. Now can we get back to discussing the real topic here? IE locked accounts.
    2 points
  12. R.I.P to a thread that is trying to help us all
    2 points
  13. I have to agree with its best to keep things secret like Jack does. Telling others only hurts you
    2 points
  14. And how exactly do you expect him to do that?
    2 points
  15. 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 @krisped
    1 point
  16. And this sweet drop while testing the script for update v254.0... 52 HOUR RESULT! 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.
    1 point
  17. PPOSB - AIO Hunter Brand new trapping system just released in 2024! *ChatGPT Supported via AltChat* https://www.pposb.org/ ***Black chinchompas and Black salamanders have been added back*** Supports the completion of Varrock Museum & Eagle's Peak OR CLICK HERE TO PAY WITH 07 GOLD! The script has been completely rewritten from the ground up! Enjoy the all new v2 of the script JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING/ UPDATES! New GUI: Features: Click Here Current functioning hunter tasks: (green - complete || yellow - started || red - incomplete) Screenshots: Progressive Leveling: 1-19 --> Crimson swift 19-43 --> Tropical wagtail 43-63 --> Falconry 63+ --> Red chinchompas Updates How to setup Dynamic Signatures Report a bug CLI Support - The script now supports starting up with CLI. The commands are given below. Please put in ALL values (true or false) for CLI to work properly. Make sure they are lowercase values, and they are each separated with an underscore. The script ID for the hunter bot is 677. Parameters: EnableProgression_EnableVarrockMuseum_EnableEaglesPeak_EnableGrandExchange Example: -script 677:true_true_false_true ***Don't forget to check out some of my other scripts!*** OSRS Script Factory Click here to view thread LEAVE A LIKE A COMMENT FOR A TRIAL The script is not intended for Ironman accounts. It still works for Ironman accounts, but you must have all equipment, gear, and items.
    1 point
  18. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Multiple modes: Varrock - Walk to sawmill and bank Varrock - Walk sawmill / Varrock teleport (tablet) Varrock - Walk sawmill / Varrock telkeport (spell) Woodcutting guild - Banks for logs Woodcutting guild - Chop logs Castle wars - Balloon method / Ring of dueling Castle wars - Ring of elements / Ring of dueling POH butler mode Castle Wars - House teleport (Tab OR Spell) / Ring of dueling POH butler mode Camelot PVP - House teleport (Tab OR Spell) / Camelot teleport (Tab or Spell) - Potion support - Normal butler / Demon butler - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 463:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify '-script 844'): -script 844:TaskList1.4515breaks (With breaks) -script 844:TaskList1.4515breaks.discord1 (With breaks & discord) -script 844:TaskList1..discord1 (NO breaks & discord)
    1 point
  19. Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4.99 for lifetime access Features: All spawns - Supports every multi-crab spawn point both along the south coast of Zeah and Crab Claw Isle All combat styles - Supports Ranged, Magic and Melee combat training. The script will not bank runes of any type Saving GUI - Intuitive, re-sizeable and fully tool tipped GUI (Graphical User Interface) allowing you to tailor the script session to your needs, with configuration saving / loading Human replication - Designed with human simulation in mind - multiple options to replicate human behaviour available in the GUI Setup customiser - Inventory customiser allows you to visually see your trip setup CLI support - The script can be started from the command line All potions - Supports all relevant potion types (including divine potions!), multiple potion types simultaneously and varying potion ratios Healing in a range - Dual slider allows you to specify a range within which to consume food. Exact eat percentages are calculated using a Gaussian distributed generator at run time Healing to full at the bank - When banking, the script will eat up to full hit points to extend trip times Safe breaking - Working alongside the OSBot break manager, the script will walk to safe place approximately two minutes before a break starts to ensure a successful log out Anti-crash - Smart crash detection supports multiple anti-crash modes (chosen in the GUI): Hop worlds if crashed - the script will walk to a safe place and hop worlds until it finds a free one, at which point it will resume training Force attack if crashed - the script will fight back and manually fight pre-spawned sand crabs until the crasher leaves Stop if crashed - the script will walk to a safe place and stop Ammo and Clue looting - Clue scroll and Ammo looting system based on a Gaussian-randomised timing scheme All ammo - Supports all OSRS ammo types and qualities Spec activation - Special attack support for the current weapon to maximise your exp per hour Auto-retaliate toggling - The script will toggle auto-retaliate on if you forget Move mouse outside screen - Option to move the mouse outside the screen while idle, simulating an AFK player switching tabs Refresh delay - Option to add a Gaussian-randomised delay before refreshing the chosen session location, simulating an AFK player's reaction delay Visual Paint and Logger - Optional movable self-generating Paint and Timeout Scrolling Logger show all the information you would need to know about the script and your progress Progress bars - Automatically generated exp progress bars track the combat skills that you are using Web walking - Utilises the OSBot Web alongside a custom local path network to navigate the area. This means the script can be started from anywhere! Safe banking - Custom banking system ensures the script will safely stop if you run out of any configured items Safe stopping - Safely and automatically stops when out of supplies, ammo or runes Dropping - Drops useless/accidentally looted items to prevent inventory and bank clutter All food - Supports pretty much every OSRS food known to man. Seriously - there's too many to list! ... and many more - if you haven't already, trial it! Things to consider before trying/buying: Mirror mode - currently there appear to be some inconsistencies with behaviour between Mirror mode and Stealth Injection meaning the script can behave or stop unexpectedly while running on Mirror. I would urge users to use the script with Stealth Injection to ensure a flawless experience! Since Stealth Injection is widely considered equally 'safe' to mirror mode and comes with a host of other benefits such as lower resource usage, this hopefully shouldn't be a problem. Using breaks - the script supports breaks and will walk to a safe place ready to log out approximately two minutes before a configured break starts. However, upon logging back in, your spot may no longer be open. If you configure the crash mode to be either 'Hop if crashed' (default) or 'Stop if crashed', this will not prove to be a problem. However if using 'Force attack if crashed', the script will attempt to take back the spot by crashing the occupying player and manually attacking spawned sand crabs. Be aware that players have a tendency to report anti-social behaviour such as this! Avoiding bans - while I have done my utmost to make the script move and behave naturally, bans do occasionally happen, albeit rarely. To minimise your chances of receiving a ban, I would strongly suggest reviewing this thread written by the lead content developer of OSBot. If you take on board the advice given in that thread and run sensible botting periods with generous breaks, you should be fine. That being said, please keep in mind that botting is against the Oldschool Runescape game rules, thus your account will never be completely safe and you use this software at your own risk. Setting the script up - I have done my best to make the GUI (Graphical User Interface) as intuitive as possible by making all options as self explanatory as I could, however if you are not sure as to what a particular setting does, you can hover over it for more information. If that doesn't help, just ask on this thread! Web-walking - alongside a network of paths, the script moves around with the OSBot web-walking system, using it when in unknown territory. While it has proven very reliable, there are naturally some areas for which the web-walker may struggle. As a result, prior to starting the script, I would highly recommend manually navigating your player close to the sand crabs bank, however in practice, anywhere on Zeah should be fine. Script trials: I believe that trying a script before buying is paramount. After trying the script, hopefully you will be convinced to get a copy for yourself, but if not you will have gained some precious combat experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Recent Testimonials: Starting from CLI: This script can be started from the command line interface. There is a single parameter, which can take two (and only two) values: 'gui' or 'nogui'. 'gui' will start the script and show the gui, 'nogui' will skip the GUI setup and start the script using your save file as the configuration. To start from CLI with 'nogui', the script requires a valid GUI save file to be present - if you haven't already, start the script manually and configure the GUI to suit your needs. Then hit 'Save configuration' and in future starting from CLI will use these configured settings. The script ID is 886. Example CLI startup: java -jar "osbot 2.4.137.jar" -login apaec:password -bot apaec@example.com:password:1234 -debug 5005 -script 886:nogui
    1 point
  20. That is some sweet work... Btw, do you still have graphic creation services?
    1 point
  21. Love doing manupulationa, very nice work.
    1 point
  22. While we are on subject.. Anyone wanna sword fight?
    1 point
  23. Enough to please your mom
    1 point
  24. God, I think I came. Just buy it dude. Worth every penny.
    1 point
  25. This is just some guidance to you but I would suggest you get 53-55 from splashing then autoclick to 80 (I've continously autoclicked 75-94) in less than a week only 10k alchs to 94. If you want a qoute, i'll do it for 25m no time frame best methods you supply
    1 point
  26. u did like my post but i dindt get my trail
    1 point
  27. U cant even bot that i believe. I can do this for you i'm BA expert,price depending on stats pm me on skype :ironndead@gmail.com
    1 point
  28. https://osbot.org/forum/topic/112201-barrow-glove-starters-comes-with-creation-email-hand-done/ Comes with creation email, (don't bother with recovery tests, they are useless, if the owner will want to screw you there is nothing you can do but get it banned)
    1 point
  29. He scam quit me for 400 usd lel
    1 point
  30. WINNERS PM ME TO RECEIVE YOUR PRIZE.
    1 point
  31. 1 point
  32. I never once discredited pain to my success, we're cocky together. Pain's the reason I started, and I am the reason pain's still here.
    1 point
  33. I'm just saying if you were as secretive about how much you make and how superior you are to everyone else as much as you are about your methods, a lot more people would like you. Not trying to gang up on you here
    1 point
  34. SIKE! I BOUGHT IT YOU'RE TOO SLOW BRO
    1 point
  35. Sorry, 350-400m, dont want to hurt the god tier status you've built here at osbot xD Again, when you tell me "I don't get bans" and you're NOT making 1b/day still, knowing how realistically easy it is to make that if you didn't get bans just like you told me, its very hard to believe you. Myself and others aren't "doing" anything different than what everyone has been "doing" for months and months. They've just recently added something to stop accounts from being put through tut on proxies/vps's
    1 point
  36. can i grab a trial when this is updated please? cheers.
    1 point
  37. assumed paying 10$ meant it was a solid script... it reminds me of the free pc script. any chance of a refund? i cant use it.
    1 point
  38. Thats not even his script? lol
    1 point
  39. They were preschoolers. I can give you anecdotal examples of my family, e.g My grandpa because of the shitty economic status blacks were given, my moms dad and grandpa were impoverished and built a house out of debris from the 1938 hurricane in NE. At the age of 17 my grandpa got sent to war having to fight for a country that hated an oppressed blacks, he and others were treated like shit and given the bare minimum. My great uncle survived pearl harbor and was injured and never returned the war, came back to a country the refused to respect him, give him a chance, or give him a job. Nevertheless, jim crow law, wildly active and blacks were publicly oppressed. My parents all through they're life up until the late 90's was racially discriminated against. Refused to given jobs, beaten, chased with chainsaws, jumped, pulled over by cops for no reason, beaten by cops. Luckily my parents were able to obtain an education at state universities. There is much more to this, but again it is quite anecdotal and doesn't qualify as much. I was lucky enough to be in a better position than other blacks in this country. Lucky enough my parents were able to provide me with proper education by moving me to a private school, where I was harshly discriminated against by my peers and teachers. I transferred private school twice because of this. I've only been in a white dominated school my whole life, I've been ostracized by many for my skin color many times. Pulled over by cops for nothing. Chased down through a park in an undercover vehicle for no reason. My father is in law enforcement and because of that, I've been able to avoid many encounters with police. Now remind you, where I am, is because of the hard work and determination my parents received. A part of it, was luck. Many blacks are not given the opportunities I have today because of a systematic and social oppression from whites not to long ago bro. As we all know most problems in the world are inherited by social economics problems. Which is why the cycle of poverty is so evident, in the whole world. Currently I go to a top 15 STEM university in the country, I am pursing a B.S in Computer Science and 2 minors in Discrete Math and Data Science and plan on furthering my education after that. Through my hard work and dedication I probably still wouldn't be in the position I am today. With the help of my parents, minority progressive centers, private donors for scholarships and more, I wouldn't even be closely to the position I am today. Don't tell me I live a victim-hood complex when you don't know me or the things I or my family have gone through or nevertheless what many blacks in this country have gone through. Your arrogance is part of the root of why we are in this position today. There is much more stories and examples I can give you, but I think this should suffice.
    1 point
  40. possible to get trial for this?i got your other scripts
    1 point
  41. 1 point
  42. I really would like to try this script
    1 point
  43. good for goldfarming!
    1 point
  44. Inv for brutuls is 1 ranging pot 4 prayer one antifire and 5 monk's, itll get stuck with the bank screen open, if i pause the bot and close the bank itll still stand there and only start working once the shortcut in the ground is on screen.
    1 point
  45. Hi ! Would i be able to get the trial now please as i am verry intersted in purchasing and just wana check out how it works :P thanks
    1 point
×
×
  • Create New...