Leaderboard
Popular Content
Showing content with the highest reputation on 01/16/19 in all areas
-
3 points
-
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.2 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.2 points
-
Let's work to make Wilderness bots great again! Example code: import java.util.List; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import com.liverare.api.WildernessAPI; @ScriptManifest(author = "", info = "", logo = "", name = "Test", version = 0) public class Test extends Script { WildernessAPI wilderness; @Override public void onStart() throws InterruptedException { wilderness = new WildernessAPI(); wilderness.exchangeContext(bot); } @Override public int onLoop() throws InterruptedException { Player workerBot = players.closest("W0rk3r B0t 5001"); handleRealThreats(); handlePotentialThreats(); saveWorkerBot(workerBot); return 100; } private void handleRealThreats() { List<Player> realThreats = wilderness.findRealThreats(); if (realThreats != null && !realThreats.isEmpty()) { // oh shit they can attack us // better check what they're wearing and what they're doing } } private void handlePotentialThreats() { List<Player> potentialThreats = wilderness.findPotentialThreats(); if (potentialThreats != null && !potentialThreats.isEmpty()) { // oh dear, we may be in trouble // we'd better not go deeper into the Wilderness, they may be // waiting for us to do exactly that! } } private void saveWorkerBot(Player workerBot) { List<Player> realThreatsToWorkerBot = wilderness.findRealThreats(workerBot); if (realThreatsToWorkerBot != null && !realThreatsToWorkerBot.isEmpty()) { // worker bot may be in trouble // perhaps we should attack baddie? lure them away? etc. } } } Methods: public int getSafeWildernessLevel(Player player) public int getSafeWildernessLevel(Player playerA, Player playerB) public List<Player> findPotentialThreats() public List<Player> findPotentialThreats(Player victim) public List<Player> findRealThreats() public List<Player> findRealThreats(Player victim) public static boolean canPlayerAFighterPlayerB(Player playerA, Player playerB) public static int calculateYCoordinate(Vector3D vector3d, boolean upperBound) public static int calculateYCoordinate(int wildernessLevel, boolean upperBound) public static int calculateWildernessLevel(Vector3D vector3d) public static int calculateWildernessLevel(int yCoordinate) Source:2 points
-
ABottersDream's Services Quest Price List TOS 1. You may not log into the account during a service unless you have permission, doing so will result in the termination of the service with NO Refund. 2. You MUST NOT change the details of the account until the service has been completed, doing so will result in a void service with NO Refund. 3. If there are any items required for the service, you must provide them. 4. You MUST change your password after the service is completed. I'm not responsible for anything that occurs afterwards. 5. If you have any substantial wealth on the account, it is your responsibility to protect it (Either Bank Pin/Transfer Trade) 6. Once the service is complete, you must leave a Feedback. 7. Once you can contacted me in anyway about a service you have agreed to these TOS Thanks for the Quest Price list: @Divergent07 Thanks for the TOS Layout: @TaxSeazon2 points
-
I believe more are covered in the guide that you may find useful.2 points
-
Request Template: What do you want the script to do? (be specific, the more details the better) What is your budget? NOTE: I will write the script as you have requested it by using the template. I will add each feature that you want included. If you forget a feature or you want something else added it will be at an extra cost.1 point
-
Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/1 point
-
'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here1 point
-
1 point
-
1 point
-
https://github.com/Explv/Explvs-AIO/blob/master/AIO/src/org/aio/util/MakeAllInterface.java1 point
-
Withdraw all is possible if you block out some places in inventory? As for lag I can easily prevent that. I will add like 3-4 styles anyway and whichever works best will be used stay tuned for the upcoming update ^^1 point
-
if that is possible, you should try black salamaders out. it does everything wrong... sorry to say that, its not even using the right tree for setting up a trap. Even the order of picking stuff from the ground till obtaining salamanders is not smooth. Im sorry to say bro but in my opinion there are free scrips that act better than this paid one1 point
-
1 point
-
1 point
-
Lol I’m always down for updates! And you’re right I haven’t been documenting the minor QOL updates like I should be, but I do push them all the time, and typically talk about them in my discord. As far as salamanders are concerned, if you would like me to change how the bot handles the order of process, let me know and I can do a switcharoo1 point
-
Didn't try on stealth injection but today it looks like it is picking them up just fine! Not sure if I did something wrong yesterday or there was an update or w/e but it's working. Great script so far, thanks!1 point
-
1 point
-
So this is what I've figured out and it seems to be working well... If you look at the very beginning of this thread there pretty much a step by step on how to set up your setting before running the bot... LOL maybe I should've read it thoroughly. Be sure that your ESC key is not bounded to anything (i.e. Inventory, stats, prayer page etc.) otherwise the bot will frantically press the ESC key as it is intended to and whatever window it is correlated with will open and close. Hope this helps!1 point
-
1 point
-
When the urge for 99 construction is real and your lazy but have a 2 day bot ban I would buy this!!! UGHHHHHHH I would even bot for 30 mins at a time if i could.1 point
-
Can i trial this mate. got your magic script. good script would like it test this oone1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
just purchased and making redwood shields is broken it makes arrow shafts instead.1 point
-
I got the exact same issue, also just runs around like a retard, doesn't open doors, oh man :D. But thanks for trial. I think you must fix that the bot opens doors, cause if door is closed he just stands there and watches near the gates. Report post Posted December 16, 2018 I would highly recommend you trial this script before purchase as in its current state it has a number of flaws. Some problems I was having with it were as followed. When I would set the script to portal mode it would randomly run around circles towards the south of the map. I also couldn't set it up to attack npcs while on portal mode as suggested in the pictures. I tried out the NPC attack mode aswell but this would often stand in the middle of the map for a few seconds until an npc came close enough to finally go attack. It would also run after a random npc if it went to the corner of the map and after killing said npc would stand there until another npc came within its tracking range. Lastly on any mode if it was trying to run out of one of the doors, if another player were to close the door infront of it, it would run all the way to a door that was open looking very unrealistic.1 point
-
script dosent recognize out of arrows or bolts or range potions? im using mirror mode and offical rs client1 point
-
1 point
-
1 point
-
it was working for me at first then i switched from cutting bows to stringing and it did a few now wont start doing anything at all except closing the bank1 point
-
1 point
-
Hello @Czar, I'm just looking to request you add a new option for the Lunar Spell "Superglass Make". Currently you have the option of using Soda Ash, Seaweed, and Swamp Weed to combine with a bucket of sand to create "Molten Glass". OSRS recently introduced a new type of seaweed called the "Giant Seaweed" that also can be used with the Glassmaking spell. Using the Giant Seaweed actually doubles the profit you'd normally make when you use regular seaweed. " Using giant seaweed would provide a profit of 1,914 coins per cast with an inventory of 3 seaweed and 18 buckets of sand. Molten glass that would go over the 28 slot inventory will be placed on the ground and need to be picked up to achieve the appropriate profit. " - OSRS Wiki I was hoping you could add Giant Seaweed as an option to use whilst casting Superglass Make. Like it says in the wiki though, you'd have to program the script to pick up Molten Glass to maximize profit since using 3 giant seaweed creates more molten glass than you can hold. Thank you!1 point
-
I've discovered if you carry 2 knife's in inventory the script will be fooled and only withdraw 26 logs. Simple work around for now I suppose! JAYM1 point
-
Hey Czar, I've discovered a vulnerability in the fletching script where, (if) fletching willow shields; it takes takes 27 willow logs out of the bank each time, only using 26 of these logs. It then proceeds to put the (1) leftover logs back into the bank upon banking the shields. This results in a very un-humanlike action each round of shields. Since a human would just deposit the shields and withdraw more logs. If the script were to withdraw 26 each time then the (1) leftover wouldn't exist to be redeposited each banking cycle. TYVM for any fix in advance! JAYM1 point
-
Script runs great,only problem I encountered is if you have a pin pending. When you login and acess bank for first time that session it wont click to confirm that you want the pin to be enabled in x amount of time.1 point
-
1 point
-
How do I use the Damage Spells when I select damage spells it says choose type? Am I supposed to type the name of the spell I want to cast?1 point
-
1 point
-
I did try walker both ways, didn't hook while logged out though. Will try that.1 point