Leaderboard
Popular Content
Showing content with the highest reputation on 12/04/18 in Posts
-
Item-Combiner Osbot script designed to automate any 2 item combination action. Source + Jar: https://github.com/PayPalMeRSGP/Item-Combiner Common use cases: stringing bows creating unf potions finishing potions doing hosidious favor by making special compost Usage Instructions Currently this script ONLY works with NPC bankers, so no bank chests. Also only works for game tasks where FOURTEEN of TWO item types of withdrawn and put together. Start script with an inventory setup with the 2 items to combine. The items are auto detected and the session's recipe will be set. Script will execute until either constituent item runs out. WARNING: I only check for the "Nothing interesting happens" String in game chat, it is the user's responsibility to ensure that they have the required level necessary! I don't know what the exact gamechat string for not having the required lvl, so if anyone can tell me I can remove this warning. Installation A precompiled jar of the source code has been provided for you under the compiled folder. Drop this under the scripts folder in your osbot user files directory located under your user folder on your computer. Special Notes This script is written to simulate a markov chain. Most actions such as item creation have been redundantly coded to be solved in multiple distinct ways. For example, When interacting with the widget to confirm to combine items, there are 3 choices of which one is randomly chosen. AFK (62.5%; 100/160): interact with the widget, move mouse offscreen, remain idle for some random time even after all items have been combined HoverBank (31.25%; 50/160): interact with widget, then right click hover the bank option, when all items have combined immedietly click to open the bank PrematureStop (6.25%; 10/160): interact with widget, right click hover the bank, before all items have combined, click to open the bank canceling combining the remaining items. This is meant to simulate a EHP player mistiming the game ticks. Percentages are calculated from relative probability weights I've set. The following line defines the above branch probabilities. Item-Combiner/src/nodes/bankingnodes/withdraw/Withdraw.java private List<Edge> bothItemsWithdrawn = Arrays.asList( new Edge(AFKCreation.class, 100), new Edge(HoverBankerCreation.class, 50), new Edge(PrematureStopCreation.class, 10)); The AFK branch probability is calcuated by taking the weight of that branch (100) divided by the total weight sum of every branch (100 + 50 + 10). So 100/160 = 0.625. If desired you can modify these probabilites to your own desires. Doing so may grant your script a different profile than every other user. Also the items slot of the two items chosen to be used on one another is random, by default item.interact(<item>) always interacts with the first item slot index matching the specified target item.3 points
-
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
-
considering low pray fire cape services on pures are like 80m each if someone wanted to get a account like this made it would be mega expensive but to sell its probably just like 100m extra on top of the account value 200-400m I reckon. much more if you had higher rep. if you built up 100 or so feedback before hitting the account market you could probably get 500m+ for it. it will be hard to get a buyer with 0 feedback. good luck with sale though.2 points
-
2 points
-
He posted in the wrong section and got replies relevant to the section he posted in. Don't call the people responding to a request in services as a services apes when hes in the wrong section to begin with.2 points
-
Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. BUY NOW $9.99 NEW! Added Both Wyrm Courses! SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results1 point
-
RUNNING 4 SESSIONS PER NODE NODE [2] WITH 4 MORE BOTS Showcase: 8 bots same time generating ~2.8m/hr which equals to roughly ~67m/day! 1 MULE PER MACHINE FAQ What is the script ID? 782 Can I run this bot with the Bot Manager? Yes, the parameters will be the saved file name in the setup window, you will see once you run the bot. Can I request features added to this bot? Yes, I am always listening to requests and adding new features all the time!1 point
-
NEW! supports new south + east shortcuts, new hopper (upstairs), and mouse invokes!!! (just like runelite!) 'the intelligent choice' By Czar 34-99 Mining on video!! Agility Shortcut Setup Window Preview 70 hours run time https://i.imgur.com/wiF6VPO.png1 point
-
Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Account builder mode to level your firemaking to level 50 or even higher. - Equips pyromancer gear option - Chopping and burning logs (base Option) - Relights brazier - Fletch option - Fix brazier option - Make potion and heal pyromancer when down option - Tons of food supported - Brazier swicthing when pyromancer is down - Advanced game settings to skip games, smart caluclate points, afk at certain points, ... - Bank or Open crates - Dragon axe special attack - Fletch at brazier option - Chop in safespot option - Worldhopping - 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 909: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 managers you do not need to specify -script 909): -script 909:TaskList1.4515breaks (With breaks) -script 909:TaskList1.4515breaks.discord1 (With breaks & discord) -script 909:TaskList1..discord1 (NO breaks & discord) Proggies:1 point
-
Note: No additional quests or PoH interiors are required anymore. Please take the time to read through the following information, they may answer your questions If not, feel free to ask in this thread Barrows Barrows is a dangerous combat minigame, located in the southern parts of Morytania. The purpose of the minigame is to kill all 6 barrow brothers and finally claim their treasure, providing a chance to receive the unique and valuable barrows equipment, as well as other precious loot. Feature Guide Starting the script Proggies (Post your own in this thread to have them added) Change Log Troubleshooting FAQ Dynamic Signatures Bug report template http://frostbug.dk/dynsig_barrows.png?username=All1 point
-
Script thread Update: Version 1.1 is now live, featuring changes to reduce the ban rate, as well as partial Mirror Mode support (see FAQ) ! This thread is for discussions and questions regarding the FrostCaves script. Script status: LIVE (Get it HERE) Demonstration video made by @Keven during early beta testing: PLEASE read below FAQ before buying the script and/or posting your questions FAQ Troubleshooting Info Screenshots Change Log Thank you @Fruity for the graphics Thank you @Zach for making this possible in the first place1 point
-
Hey yβall! Welcome to Evenflyoxβs service thread! Getting bored training up those combat stats on your pure? Sick and tired of looking up quest guides for quests that you just canβt be asked to do anymore? Stuck on getting that firecape your after? Or maybe youβre just sick of the monotonous tasks that you have to do in Runescape and you donβt want to bot them. Thatβs where I come in. Iβve been playing Runescape now for far too long, and Iβd rather not tally up the years that Iβve spent playing this game. But I have a 2100+ total level main with quest and diary cape. As well as maxing on RS3 pre-invention with 120 DG, so Iβve been around the block once or twice ?. All training will be hand done unless you request otherwise. Also keep in mind that you are simply paying for the service, this means that if you are asking for hunter to be trained, unless negotiated prior to the service starting, you are only paying for the XP. Not the chins or anything else received during the process of completing the service ? Please note that I will not be going first. If you want we may use a verified middleman and I only accept the following as terms of payment OSRS GP PayPal Order Form β What are you requesting? : Payment Method? : Middleman? : Skype or Discord: Do I have a Quest or Diary Cape? : Do you agree to the TOS? : I will always do my best to give you a time estimate, but will always be transparent about whether or not I am currently backed up on orders at the moment or not Before getting into pricing. Shoutous to @Dbuffed for giving me the idea/inspiration for starting my own service thread and adapting his pricing model. Thanks bud Official Workers: @HamSammich Packages: Quest Prices: Skill Prices: I will be updating this thread with more pricing including more packages, single quest options, skilling orders, fire capes, etc. I have already worked with some of you doing odd jobs and I hope to continue working with you in the future. Thanks for reading :). Terms of Service (Also credit of @Dbuffed for my adaptation) - You will provide everything needed for the service. When ordering with my service, you agree that you will remove all unneeded wealth. Upon failure to remove (unless given a valid reason) I am not responsible for any loss of anything due to the nature of not knowing if you have removed it by default. I will add your Skype or Discord and confirm via my thread, after this you can PM me if needing further confirmation of your order :). You will pay upfront for your work, or a middleman will be used at your expense. I do reserve the right to refuse any order for any reason. If I am unable to complete a service, you will be refunded for what is left. Any bans/mutes to the account(s) whilst doing services are not our responsibility. You will not log in whilst a service is being done, unless told you can. You will feedback upon completion of your order. Please note, OSbots TOS also comes into affect - ο»Ώ1 point
-
Dear community, It has been a long search and tough decision on who we needed to continue the active development of OSBot. Several candidates were carefully reviewed and the decision was difficult to say the least. We are happy to announce that we think we have found the perfect candidate to follow up on the outstanding work that @Alek has always delivered. Without further ado, I want to present you our new developer: @Patrick A.K.A. Pat-Ji with a selfwritten introduction: The last administrative formalities are currently being taken care of and from here on out we'll be able to bring Pat-ji in to the working mix, by gradually giving him acccess to the bits and bytes of OSBot. We are really happy to have @Patrick on the team and are looking forward to his contributions to OSBot. Yours sincerely, The OSBot team1 point
-
1 point
-
Well I'm at work at the moment, so I cant really try anything. But you might try like: RS2Widget spin = getWidgets().getWidgetContainingText(270, "What would you like to spin?"); //spin1 point
-
Tome of fire isn't supported yet, but I will be adding support for those in the upcoming update. Almost ready guys ^^ Apologies for the delay, I was supposed to add the update last week but I ran into some code which needed tweaks/changes and a bit of re-writing. But it's all good1 point
-
How's the Minnow Fishing on this? Is it human-like / low banrate? Also, the profit calculation doesn't seem to work properly for minnows.1 point
-
@SocialGFX Somehow my Discord won't send you a friend's request. Could you send me one instead? Eagle Scripts#52661 point
-
1 point
-
Hi, I bought this script back in February 26th of 2017 at 09:16:07 PST. However, I do not have access to it anymore. I have proof of purchase and invoices and emails. Would love a response as I would like to get my account from 80 fishing to 99 soon. Thank you!----Austin1 point
-
Theres a 37% ban rate at Minnows. In actuality, Minnow ban rates are actually quite high, do get to the level of the bots/players you were seeing, you would probably need a really decent private script.1 point
-
1 point
-
@Czar Great job with this script. Could you however please add longer sleeps in between jumping to a new fishing spot? It's almost instantaneous and people notice. Thanks1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
So after some testing, it seems to be working fine again on both injection and mirror mode! Will report back if anything is wrong again If you're on Mac or linux, I've noticed that it does not show the last script on your account for some reason (this is OSBot's fault, not the scripts). If you click on the last script, and then press the down arrow, it could show up Had the same issue, was about to post but then realised it's there on windows so tried again and it was there but you just can't scroll to it, if not, find the subforum responsible for client/payment issues (I'm not sure which one :') ) and see what they can do to help!1 point
-
1 point
-
1 point
-
Thanks guys for all the feedback and posts, really appreciate it. Added a few things on the next update list which will be posted very soon. ^^ For mirror mode, it is supported but you gotta make sure it's setup right: stay logged out when launching both clients, login manually, start the script, increase the reaction timer (for combat which is not dangerous). I would highly recommend waiting a bit more until mirror mode is fully perfected by the devs, since it is still beta/experimental. As for mac saving/loading: any errors in console log? I will help ASAP. It worked for me in linux and it should be the same for mac. Never had any complaints Please confirm! As for sand crabs - make sure your tile is on the edges. Otherwise where do you want the bot to run to? If you are in the center, no other tile is far away enough to refresh aggro. If there is another way, let me know. How about going off the island and then returning? But it's 10k/trip so it's not worth it. As for the rest, I have noted down and you will see your post in the next version update changelog, thanks guys1 point
-
1 point
-
Hey man! I believe there is a premium fishing trawler script in the store. I would imagine that a private script for a mini game might be pretty expensive.1 point
-
1 point
-
hey! so i purchased you script 2 days ago, i'm having an issue, when cutting in both modes, the script gets stuck and does nothing (after like 10 mints of fletching), any idea about whats going on?1 point
-
Czar, the bot is running very well but can you fix that the bot do not use both sides of minnow fishing? i think its to obviously1 point
-
Hey whats up Czar. I just bought your script, but I have a little problem. I am making steel arrows, but the problem is that he makes 10 every time, but he just keeps re-doing it after he fletched 2, which is decreasing xp rate and increasing ban rate ( i think) how can I fix this? thanks you mate1 point
-
1 point
-
I am attempting to run lava runes with magic imbue, however I can't seem to get it to run. It just opens the bank and sits there. I am using a mystic staff with a tome of fire and fire Tiara, and have earth runes/Astrals in the inventory. Binding necklaces/Ring of duelings and Pure essence are all available in the bank. Please let me know if I am missing a step on setup.1 point
-
While doing lobsters in karjama is does 2-3 banks then for some reason it opens the door into the prison in port samin climbs up the ladder and sits there. Im running with the mirror client and on a f2p with the treasure quest done. It does it every time I try and run the bot1 point
-
1 point
-
1 point
-
1 point
-
Heya Czar now, im not quite sure how the anti bottling system handles the click capacity that occurs when running this bot. I've noticed that it clicks in the same spot and seemingly at the same cadence every time. Would this be something that could possibly trigger a ban? Bot seems to be working well however Thanks!1 point
-
1 point
-
Not sure if this was fixed or not but i was running the script earlier today to fish trout/salmon in barbarian village and it would get caught up whenever banking the fish. It would click banker then exit, over and over.1 point