Leaderboard
Popular Content
Showing content with the highest reputation on 04/11/18 in all areas
-
PPOSB - Bank Organizer More than 100+ categories, and thousands of items, to sort for you! All categories and tabs are rearrangeable! PURCHASE HERE! https://osbot.org/forum/store/product/681-bank-organizer/ --------------------------------------------------------------- JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING! --------------------------------------------------------------- MAKE SURE YOU ARE IN FIXED MODE BEFORE RUNNING THE SCRIPT! RESIZABLE MODE IS NOT SUPPORTED! ALSO PLEASE DISABLE PLACE HOLDERS! New "Advanced Layout Manager" will allow you to add/edit/remove or rearrange items with 100% Customization "Inspect Category" will display the items corresponding with that category Video example of the bank organizer handling a lot of random items (example) HAVE A LAYOUT YOU WOULD LIKE TO SHARE? Please post the layout in the comments below, along with some pictures of your bank, to be added to the list below! The Bank Organizer currently supports over 6,000 Old School RuneScape items. Any items missing will need to be added manually in the GUI. Make sure to save your layouts so you may reuse them over and over again. Check out some of my other scripts!18 points
-
────────────── 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.6 points
-
Trying to up my farm with some more zulrah accounts. The minimum stats I am looking for is 60 defense if account has void, if not then 70 def, 75 range, 75 magic 70+ hitpoints fully quested(or atleast up until regicide) I only want to deal with OO’s of the accounts price of account can be negotiated after contact.3 points
-
This would require Your account to stick out personally out of 30,000 Bots Would have to manually apply code to affect just your account. ( Or set your account to - Weak staking type - which is such a bazaar thing to do to customers lmao If they where looking at your account the first thing they would check is botting / total wealth. You would just be banned. I don't think jagex actually makes personal adjustments to disadvantage account, Actually goes against their ToS and is a form of Harrasment. Lay off the weed, This is such a cooked idea. The world record for most 50/50 Losses in a row is 27 ( coin flip ) and the Probability of 7 loss streak is not unheard of even if you give yourself 10% better odds.3 points
-
Not really, if you used Windows it'll be a better user experience but Linux is free and uses less computer resources. If you're using Kimsufi I know a template you can use for Windows 10 but you'll need to get a license for it within a few days. It apparently works for online.net and soyoustart but haven't tried it successfully yet. The config doesn't use -localhost, means most of the time you'll be bruteforced. Btw VNC is probably one of the most common ways of hacking a Linux server. Secondly It doesn't install fail2ban which also alllows the attacker to bruteforce SSH which is very common, so if you have a shitty password expect it to be bruteforced eventually. Thirdly the repo for that installer no longer works so you'll need to use: cd /var/lib/dpkg/info sudo sed -i 's|JAVA_VERSION=8u151|JAVA_VERSION=8u162|' oracle-java8-installer.* sudo sed -i 's|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1/|' oracle-java8-installer.* sudo sed -i 's|SHA256SUM_TGZ="c78200ce409367b296ec39be4427f020e2c585470c4eed01021feada576f027f"|SHA256SUM_TGZ="68ec82d47fd9c2b8eb84225b6db398a72008285fafc98631b1ff8d2229680257"|' oracle-java8-installer.* sudo sed -i 's|J_DIR=jdk1.8.0_151|J_DIR=jdk1.8.0_162|' oracle-java8-installer.* apt-get update && apt get upgrade -y apt-get install oracle-java8-installer -y If you CBA to use ^ then you can use my own install script that I use: #!/bin/sh adduser user apt-get update && apt-get upgrade -y && apt-get install nano software-properties-common python-software-properties fail2ban nano xfce4 xfce4-goodies tightvncserver firefox htop nload -y sleep 1s myuser="user" sleep 1s mypasswd=$(tr -cd '[:alnum:]' < /dev/urandom | fold -w8 | head -n1) sleep 1s mkdir /home/$myuser/.vnc sleep 1s echo $mypasswd | vncpasswd -f > /home/$myuser/.vnc/passwd sleep 1s chown -R $myuser:$myuser /home/$myuser/.vnc sleep 1s chmod 0600 /home/$myuser/.vnc/passwd sleep 1s echo "VNC Pass: $mypasswd" >> ~/vncpasswd sleep 1s su - user -c "vncserver -kill :1" su - user -c "mv ~/.vnc/xstartup ~/.vnc/xstartup.bak" su - user -c "echo '#!/bin/bash' >> ~/.vnc/xstartup" su - user -c "echo 'xrdb ~/.Xresources' >> ~/.vnc/xstartup" su - user -c "echo 'startxfce4 &' >> ~/.vnc/xstartup" su - user -c "chmod +x ~/.vnc/xstartup" su - user -c "vncserver" echo "[Unit]" >> /etc/systemd/system/vncserver@1.service echo "Description=Start TightVNC server at startup" >> /etc/systemd/system/vncserver@1.service echo "After=syslog.target network.target" >> /etc/systemd/system/vncserver@1.service echo "" >> /etc/systemd/system/vncserver@1.service echo "[Service]" >> /etc/systemd/system/vncserver@1.service echo "Type=forking" >> /etc/systemd/system/vncserver@1.service echo "User=user" >> /etc/systemd/system/vncserver@1.service echo "PAMName=login" >> /etc/systemd/system/vncserver@1.service echo "PIDFile=/home/user/.vnc/%H:%i.pid" >> /etc/systemd/system/vncserver@1.service echo "ExecStartPre=-/usr/bin/vncserver -kill :%i > /dev/null 2>&1" >> /etc/systemd/system/vncserver@1.service echo "ExecStart=/usr/bin/vncserver -depth 24 -geometry 1280x800 -localhost :%i" >> /etc/systemd/system/vncserver@1.service echo "ExecStop=/usr/bin/vncserver -kill :%i" >> /etc/systemd/system/vncserver@1.service echo "" >> /etc/systemd/system/vncserver@1.service echo "[Install]" >> /etc/systemd/system/vncserver@1.service echo "WantedBy=multi-user.target" >> /etc/systemd/system/vncserver@1.service systemctl daemon-reload systemctl enable vncserver@1.service su - user -c "vncserver -kill :1" systemctl start vncserver@1 add-apt-repository ppa:webupd8team/java -y # temp fix to webupd8 issue cd /var/lib/dpkg/info sudo sed -i 's|JAVA_VERSION=8u151|JAVA_VERSION=8u162|' oracle-java8-installer.* sudo sed -i 's|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u151-b12/e758a0de34e24606bca991d704f6dcbf/|PARTNER_URL=http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1/|' oracle-java8-installer.* sudo sed -i 's|SHA256SUM_TGZ="c78200ce409367b296ec39be4427f020e2c585470c4eed01021feada576f027f"|SHA256SUM_TGZ="68ec82d47fd9c2b8eb84225b6db398a72008285fafc98631b1ff8d2229680257"|' oracle-java8-installer.* sudo sed -i 's|J_DIR=jdk1.8.0_151|J_DIR=jdk1.8.0_162|' oracle-java8-installer.* apt-get update && apt get upgrade -y # end of fix. apt-get install oracle-java8-installer -y apt purge --autoremove xscreensaver -y echo "DONE!" https://paste.ofcode.org/dEjdtKeF5xcnpF2LjB6zu2 I've also got a video you can use to actually set it up:3 points
-
You really should think about whose family you message too but there we go.. Pot kettle.3 points
-
View in store $5.99 for lifetime access _____________________________________________________________ Key Features: Progressive mode - The script will traverse the xp-optimum course for your current level; walking to the next course as your level increases. Reliability - The script was developed and rigidly tested with superior reliability in mind. Human replication - Designed around human simulation - behaviour tuned to replicate common rooftop play styles. Alching / Magic Imbue - The script can be configured to High/Low Alch items, or cast Magic Imbue as it traverses the course. Target system - Can be optionally configured with a target. Once this target is achieved, the script will stop. Available targets (variable λ): Stop when λ agility exp gained. Stop when agility level λ reached. Stop when λ magic exp gained. Stop when magic level λ reached. Stop when λ minutes passed. Healing - The script will consume edible items in your inventory to restore health, stopping if you run out of food. Mark of Grace looting - All marks of grace are looted while the script traverses the rooftop. Randomisation - All thresholds (including but not limited to Run energy and Critical Hp) are dynamically randomised. Energy restoration - The script will consume energy restoring items/potions when needed, provided they are available in the inventory. Web-Walking - The script utilises the OSBot Web to navigate the OSRS map, meaning it can be started from almost anywhere. Course detection - If you are on/near a rooftop course before setup, the course will automatically be loaded into the GUI. Error correction - The script will detect when it has made a mistake (e.g. climbed ladder in seers' bank) and will attempt to return to the course. ...and many more! Supported Rooftops: (Level 10) Draynor ✓ (Level 20) Al-Kharid ✓ (Level 30) Varrock ✓ (Level 40) Canifis ✓ (Level 50) Falador ✓ (Level 60) Seers' Village ✓ (Level 70) Pollnivneach ✓ (Level 80) Rellekka ✓ (Level 90) Ardougne ✓ Things to consider before trying/buying: 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. 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 strongly recommend manually navigating your player to/close to the desired rooftop course. Progressive mode - the script features 'Progressive mode' which will cause the script to advance rooftop courses as you level up. Progressive mode relies on the aforementioned web-walking system for inter-rooftop navigation. Consequently, I would highly recommend monitoring the script as it traverses between courses to ensure the web-walking process correctly executes. Healing & Energy restoration - the script will automatically heal or restore run energy when needed. It will do so by consuming items in the inventory - this script will not bank. For optimal exp rates, I would strongly suggest keeping energy restoring items in the inventory (energy/super energy/stamina/fruits/summer pies/purple sweets/...). To prevent the script stopping prematurely, bring a few bites of food along. Using magic - The script supports the periodic casting of a magic spell while traversing a course to maximise experience rates. To determine whether or not you can cast a spell, the script checks your magic level as well as which runes are in your inventory and which stave you have equipped (if any). It is worth noting that, at this time, the script does not recognise any of the following items as rune sources, so avoid using them while running this script: Bryophyta's Staff, Tome of Fire, Rune Pouch. 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 agility experience! If you're interested in a trial, please follow the instructions on my trials thread which can be found here. Gallery: Review (by Eduardino): Start up GUI (Graphical User Interface): Paint (optional, movable and self-generating): User screenshots: Testimonials:2 points
-
Consistency is the best way to get anyone to do anything. Make sure to post back daily until things are done!2 points
-
I think he's referring to the people that have 0 postcount and 1 day join date trying to request trials because they most likely have multiple accounts requesting trials every so often.2 points
-
_ /) mo / ) |/)\) /\_ \__|= ( ) __)(__ _____/ \\_____ | _ ___ _ || | | \ | | \ || | | | | | | || | |_/ | |_/ || | | \ | | || | | \ | | || | | \. _|_. | . || | || | ron92's RS acc || | || * | * ** * ** |** ** \)),,..,,/.,(//,,..,,\||(,,.,\\,.((//2 points
-
2 points
-
2 points
-
These are some bugs that I've noticed -The bot is very slow when banking, takes too long to fill pouches and withdraw essence. -Doesn't keep potion in inventory when "Keep potion" is ticked -Spam clicks wrong section on mini-map in abyss (check screenshot. Bot will spam click the outer circle when completing the mining obstacle) -Sometimes clicks are way too accurate2 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
-
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:nogui1 point
-
I will be keeping track of what I do each day in scripting and how it has improved my Java knowledge. I hope to one day be able to script flawless bots with many features added. *Remember I am starting with no prior Java knowledge. I am also a college student doing 16 credit hours this semester so my progress on here might be slow.* Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8 Day 12 Day 14 Day 211 point
-
Hi, this is 4mmog.com, we are back to RuneScape gold trading just recently, and are new to the osbot community. We want to sell and buy rs gold in this community; if you want to buy osrs gold or buy rs3 gold, we are one of the websites that you can choose. To be honest, cause we are just going back to the rsgp market, we do not have a big team which can afford the 24/7 service. If you want to buy RuneScape gold, please click “live chat” on our site to make sure that we are online first. When we are online, we will adjust our selling prices to be very cheap. Therefore check our live chat's online status first and if we aren’t online please don't place any orders or you won't get cheap rs gold and fast delivery. If you want to sell your rs money for real money, just contact our live chat, and we will tell you the price and amount we want to buy it for. We are buying more Runescape 2007 gold than Runescape 3 gold recently. Thank you for watching my RuneScape gold selling and buying thread, please check our site https://www.4mmog.com and contact us for more details. Thank you!1 point
-
1 point
-
Really loving the script so far! Very smooth and doesn't seem like a bot. A suggestion that I think would be good would be to update the alching, I'm not a programmer by any way, but the alching pattern seems pretty random. Instead of the randomness it would be nice to see the bot alching when it's running instead of occasionally doing it Keep it up!1 point
-
Some bugs that I showed you a month ago, one of which I had occur moments ago. Doubt you looked into them. Bug 1: https://gyazo.com/665ab20e27f1ad523ef95288c9ffa0f2 Account will end up using all its food and getting killed. Solution: simply kill the guard attacking you BEFORE talking to the warlord. (This bug happens most often.) Bug 2: https://gyazo.com/f41ee23e25b963a021e47d8d9ea8a666 Account keeps trying to talk to the king from outside the tree. I believe this bug happens if another player enters the door before you (if you're both near it). This happened to me on one of my own scripts at the main gate to get into gnome village. If another player entered first the account would end up getting stuck. I think its because these 2 doors aren't normal doors, once you click it you're sorta "forced" to walk through it and only one person can do it at a time. Best way to test this is to get a bot account at a part where it needs to enter the door to the tree but have another account walk through it first right before the bot account does and then see if the bot account gets stuck. Bug 3: https://gyazo.com/50896f3884287d6b2e362f6a12ad3969 Not sure how this happened or how to possibly replicate, account will walk in and out of the safe zone getting hit by the demon. Regardless, if this does happen it will use all its food until death. Also, any update on the preset saving? A very, very, very simple change to the script that would be really nice QoL update which I'm sure people would really appreciate. https://gyazo.com/1e2ea5870ba882bb8c34a6fe351defe7 https://gyazo.com/6d112ef12a3aabd236c2ff38dd54e772 https://gyazo.com/d07d693597133ca6efd8c14d1f019a23 And changing the script to STOP buying basic elemental runes for 50+ gp each would be really nice. An air/earth/water/mind rune will never ever be 50+ gp. 10gp is more than enough, there have been many times where the script stops because it didn't have enough money to cover the purchase which would be avoided if the script wasn't trying to buy the runes for such high prices. @Token1 point
-
Comments are misleading sometimes. People say things don't work, but sometimes they actually didn't set something up right or they are doing something wrong. Nothing wrong with wanting to trial something before committing to purchasing it, unless you are doing it to abuse the system.1 point
-
1 point
-
Disputed member: gearing Thread Link: cant find Explanation: bought an account that has been recovered by its oo Evidence: can provide if needed but gearing has agreed to pay the refund of the account, but we are not sure were we stand for the wealth that has been lost on the account, we need you guys to come up with a solution for us , the wealth on the account was 40-50m https://gyazo.com/effcd9d1a2ce1d5de758c4f4ff0ad546 https://gyazo.com/53a5355c40c7a25c4d018e76665b59c1 https://gyazo.com/e75447ffcf5c44b02c5f5229d30591f4 https://gyazo.com/85ad8195b9cea6de78471fbddd34ebc6 https://gyazo.com/48d62dbaeeb0b3df12018e86596b656d https://gyazo.com/c8c944dbde314cbd48b2347d96209984 https://gyazo.com/59103aef814c40c8eabb5a207fcc56a7 https://gyazo.com/c71daa448a1a145b5d9a471bf99b20151 point
-
1 point
-
I don't see how it being 'resolved' makes a difference? This has been resolved by him being banned. Your actions were resolved by, oh wait? You being banned. I have no problem with him being banned, I just find your comments on things like this rather ironic. That is all1 point
-
lol ive squashed over 90 accounts. doubt its lucky a few so far There is more than 1 unban method, and if you are not home ip ban then there is a very high unban rate like 70%+1 point
-
Hey, i am recently joining this site after a long time away from this community, if you guy would like me to introduce my self to more detail, i can always edit the post and keep it going. If you guys would like to see my progressions i will post a Gyazo of both my legit accounts and you can join me throughout the progression. Excited to make friends here! Obby Mauler : https://gyazo.com/a3518921ec7328543c9f7dadc13274bb // Grinding out 90STR whilst i make money that can fund items for me to use Skiller : https://gyazo.com/c56b52777e39ab5b748692b1811b1b76 // Working for Base 70's Whilst i find a money making method. Gladly take any suggestions on how to improve the accounts! im looking for money making methods and all that good stuff since i only returned recently and i return with very minimal cash.1 point
-
1 point
-
Whatever you say botting Lord. If you can't understand that you are doing an AFK script, then idk what to tell you.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Don't bot long periods on new accounts, it will get you banned pretty much the next day... Don't want to be rude but I'm amazed on how people fail to realize that they are under Jagex'es watch from creation. As others offered, create a new account on a proxy and let it stay for a couple of weeks, or if you want to start botting instantly, don't go ham and be cautious that you can get banned cause of 1 single mistake/script malfunction.1 point
-
ok tried everything at zmi.. can get it to work but it won't use stamina and it won't use super energy... either 3 does or 4 dose... so it does the rcing thing fine but tbh i'm not going to let my char walk to the altar... it's so bot like.. can you tell me what's going on please?1 point
-
why is there no guide to set up at ZMI or lavas? It's annoying after purchase just trying to have to guess what works and what doesn't... like do duel rings work at zmi? no... so why don't stamina pots work? I have the setting activated to use them below 30%, doesn't even try withdraw them and I have 1000 (4) staminas sat right there in the bank a clear guide to setting up zmi would be really helpful... i mean i've paid 9$, just a little explanation for each setting failing that can someone help me with their exact settings using the altar tele?1 point
-
Delete all Runescape Cache files/ App data, Completely clean anything Runescape from your Hardware / Computer / VPN-Cache. (To test if it worked Runescape client will load at 0% downloading cache again, New areas will be slowly rendering as you enter them ) 1 bot = 1 Proxy ONLY ( Unless you don't mind if all accounts made from that Proxy get chain banned) Logging into your Bot on a different COUNTRY IP can result in you getting a LOCKED account ( They think you got hacked ) Create all your accounts on the Runescape website through a socks5 proxy BY USING PROXY SETTINGS ON THE WEB BROWSER e.g. Maxathon Web browser Free Download When making a fresh account make sure you do some human like activity for at least the first hour ( maybe do 3 quests by hand & be careful on f2p worlds) You've clearly been flagged, Whether you use Mirror Mode or Injection it doesn't matter. If they are looking at your account they can see lmao. You need to become a new person in their eyes.1 point
-
1 point
-
I botted 5 hours then 6 hours some hours after, this is a script I will vouch for. 40-65 range in 1 day1 point