Leaderboard
Popular Content
Showing content with the highest reputation on 01/31/23 in all areas
-
CURRENT RECORD: 201 HOURS RUNTIME NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:2 points
-
2 points
-
By Czar 99 in one go!!! Multiple 99s in 1 sitting!!!!! Features List - Supports 4 locations, with randomisation options (Randomise all, randomise north-only, randomise south-only) - Supports taking the axe for woodcutting, if not already equipped/held - Supports taking all equipment including Tinderbox, knife, unfinished potions from crates - Prepares for matches early, and waits around the brazier if you selected to light them (For +25 initial points) - Supports waiting at the safezone after winning the match (at 500 points) to preserve food - Supports training agility via the northern agility steppe - Knows exactly which external actions interrupt your current action, and plans accordingly - Identifies cold snaps and either avoids them completely, or randomises between avoiding and tolerating them - Allows you to fletch logs before burning them for a more balanced experience gain - Choose to optionally switch to other sectors if pyromancer is dying - Identifies pyromancer health, brazier repaired, brazier lit at all times - Knows exactly how many points our current inventory holds (in terms of burning logs) - Gets 1-50 firemaking: locked to maximum of 50 firemaking, and locked to Grand Exchange only. - Buys a player-owned-house via the Varrock Estate agent if you don't already own one (Optional) - Identifies if the account has visited Zeah before, and plans ahead. - Will travel to Zeah by ship to unlock it for newer accounts (Highly useful for goldfarming!) - Resupplies food, jewellery and teleports via the Grand Exchange - Teleports to Grand Exchange supported: Ring of wealth, Varrock teleport tab, Varrock spell (runes only!), Amulet of glory, Home teleport (Lumbridge/Edgeville) - Teleports to Wintertodt Camp supported: Games necklace, walking - Allows you to filter and join matches when a certain % of the game is already active, so wait for next match if below X% - Either holds onto crates, banks them or opens them - up to you! - Supports choosing your own food, choosing when to eat (eat %), choosing minimum to leave match for, and amount to withdraw - Upgrades to pyromancer gear when applicable - Identifies when you get a Phoenix pet - Buys warm clothing that your account is able to wear, filters by skill requirement. - Stop notifications tab (similar to Perfect Fighter): allows you to choose when to stop the bot, or when to alert/notify you - Stop the script at ANY moment in time, after X minutes/hours/seconds, after X wins, after X item gained (pet too!), after X experience gained & more! Buying Warm Clothing (4 missing pieces)! Results1 point
-
ββββββββββββββ PREMIUM SUITE ββββββββββββββ βββββββββββββββ FREE / VIP+ βββββββββββββββ ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - Β£3,99 | Chest Thiever - Β£2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 β‘ β AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ β‘ ββββββββββββββββββββββββββββββββββββ What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.1 point
-
Script Writing Guide & FAQ: By: ProjectPact Checkout Script Factory 2.0 to gain access to tools and resources to save you time on developing and debugging scripts What is a Method Number? When you add a new Check or Action to the script, you may notice something that says β[x]:β (where βxβ could be any number) at the beginning of the description. The number inside the brackets refers to the βMethod Numberβ. The Method Number is unique because it connects Checks (anything that contains β->β in the description) to an Action (anything that does NOT contain β->β in the description). You may combine multiple Checks to a single Method Number. Checks control the function of the Action(s). If any of the Checks fail for a specific Method Number, the Action(s) for that Method Number will not be performed. You may put multiple Actions within a single Method Number, however the script will loop through ALL Checks prior to running any Actions, so you may not do something like: Check, Check, Action, Check, Action in a single Method Number, because it would actually read as: Check, Check, Check, Action, Action. A simple example may be seen below on the proper way to setup a script with Checks and Actions. Example: [0]: -> If inventory is not full [0] -> If RS20bject exists - [Tree] [0]: Interact With RS2Object - [Tree, Chop down] In the example there are two checks present, and a single action. Notice all three lines contain β[0]β, which states that the Method number for the following example is 0. The script makes sure that the inventory is not full, and that the RS2Object (a Tree in this case) exists before trying to interact with it. The script should automatically make the next line following the Action a new Method Number, 1. How may I edit a script with Method Numbers? When editing a script, make sure you are setting the Method Number accordingly. The script will automatically try to guess the Method Number, but this is not always accurate. You may edit a line's Method Number by right clicking and selecting, "Edit Method Number [X]". All you need to do is remember that every Action needs its own unique Method Number. When adding a method, you don't have to worry about Method Numbers going in exact chronological order ([1], [2], [3]...etc) even though it is good practice to make them... but you still have to ensure that Method Numbers go in ascending order. If not, the script will not save properly. Remember, you may always add/edit/delete a line in case you need to. How do I edit scripts? To edit a script, make sure you select the βRearrangeβ checkbox on the bottom left corner of the GUI. If you do not check this box, you will not be able to drag and drop Checks or Actions. If you right click anywhere on your code, you will see a menu appear that has a lot more options for you to use. Alternatively, you make access another option menu that contains different options by selecting βScriptβ on the top left corner of the GUI, then going to βEditβ. How do you use OR statements? OR statements are a type of check that allows you to check for multiple possibilities for an Action to run. It reduces the need to create multiple separate methods for Checks that would use the same Action. You may use multiple OR statements within a single Method Number. Below, you will find an example of how to properly use an OR statement. How do you use ELSE statements? ELSE statements are considered a type of Action that will run an alternate action if a Check fails. You should only use one ELSE statement per Method Number. Below, you will find an example of how to properly use an ELSE statement. What is a Boolean variable? A boolean is simply a true or false statement. They are very powerful in your scripts to keep up with information if you use them correctly. Using one can reduce the amount of checks required in your script, as well as make it easier to call in multiple methods. Download Example Here How do #containsPartialText methods work? The text you search for should either be at the beginning, or the end of an item. You may not search for something in the middle of an item's name. Sort by: When you search for an item, you may sort the item to either get the highest, or lowest value. In this example, lets say in my inventory I have a "Stamina potion(4)" and a "Stamina potion(1)". Sort by Highest: If I search for text containing "Stamina potion", and sort by "Highest", the bot will find "Stamina potion(4)". Sort by Lowest: If I search for text containing "Stamina potion", and sort by "Lowest", the bot will find "Stamina potion(1)". Text placement: Depending on where you select the text placement, either "Starts with" or "Ends with", the script will find item(s) with the desired text. Starts with: "Stamina potion" will find all "Stamina potion(4)", "Stamina potion(3)", "Stamina potion(2)", "Stamina potion(1)" Ends with:"ore" will find all "Copper ore", "Iron ore", "Gold ore"...etc How do I debug issues with my script? Script Factory has a built in debugging system that helps let you know what is failing so you can find issues much faster. On Script Factory, go to Script->Settings->Print to logger. What this will do is print lines to OSBot's debugger to display what is passing, or failing. Now, you need to open up OSBot's debugger to see the printed information. To do that, go to OSBot's client and hit Settings->Toggle logger. A new window should appear where you can see the printed information from Script Factory. If the logger is going too fast, you may always stop your script in Script Factory from running so you can look through the logs. REMEMBER: When you are not debugging a script, disable the 'Print to logger' option in Script Factory! This wastes a lot of resources and slows down script performance/load times. Where are my local scripts saved? Windows: "C:\User\OSBot\Data\ProjectPact\OSRS Script Factory\Local Scripts" Mac: "User\OSBot\Data\ProjectPact\OSRS Script Factory\Local Scripts" How do you run scripts via CLI? Script ID's: Script Factory 2.0: 1214 *Script Factory 1.0: 1097 *Script Factory Expansion: 1144 *Script Factory Pro Edition: 1163 Script Factory Encryptor: 1164 (anything with a '*' is no longer available for purchase) New CLI args: name=SCRIPT_NAME popups=TRUE_OR_FALSE editor=TRUE_OR_FALSE queue=TRUE_OR_FALSE * after each arg, place a underscore "_" Example: -script 1097:name=script1_popups=false_editor=true_queue=false Script Factory has a built in args generator within that can automatically create all your options, as well as more options that aren't represented above! If there is something in particular you would like to see added to the list, please let me know down below!1 point
-
Hey folks, I'm working on an AI framework for writing Scripts on OSBot. After having recently played around with a decision tree framework and reflection (see this thread), I wanted to try a different approach to scripting and I definitely think this is a winner. My intent is to provide two things: flexibility and simplicity (in regards to maintainability). I will be using a behavior tree model w/ a utility function to write a F2P pking script, so let me know where you think we can improve this framework! Source Download (0.0.31): Git Repo (temporarily down) Changes 0.0.31 - new repository, structural changes, and maven integration (streamlines collaboration). 0.0.21 - merged new framework, implemented a utility function, and removed json integration & chicken killer test script. 0.0.12 - loading decision tree from JSON file. 0.0.1 - initial release Setup Updating setup in accordance with 0.0.31 (TODO). Remarks Updating remarks in accordance with 0.0.31 (TODO). Snippets (v0.0.31) MyScript.java1 point
-
Ty for the support I will also be doing some slayer too but I will be using ranged instead of melee, I want to add better superior slayer support1 point
-
After Iβve bossed some rc levels at mini game. Got to get into some slayer. Thanks for awesome scripts1 point
-
1 point
-
Hey Czar, i was wondering if i could geet a trial on this as well? Thanks much if you can!1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
First of all, mirror probably wont run great on a RPi since it is resource intensive. For any linux distributions that will want to run mirror there is a workaround that you need to apply since the suntools.awt in most linux java distributions wont work with mirror.1 point
-
Hi Czar, Just seen this. Didn't get to use the trail. Can you please reactivate it?1 point
-
Hey Czar do you offer Trials? If so can i get one for this? Trying to decide if i want yours or the other one, but I wasn't a huge fan of the other one..1 point
-
Yes sure I will run and send an account to sand crabs right now and make a new update. I recently wrote a custom break manager for this bot last week and maybe it's not triggering at all, new update coming ASAP EDIT: New Update (v318.0) - Added improvement for breaks system - Added improvement for crabs plugin - Added new tab in setup window for Easy Profiles -- More npcs will be added every version, so far only a few are added - Fixed Planner system (CLI) - Fixed HUD for instructions when setting up cannon More updates to come, just wanted to release this one because breaks are urgent Update will automatically go live within <24 hrs. Guys you will now notice a new tab like this: This will hold my personal profiles that I use for npcs that I fight. Also we are working on releasing GE Restocking for this bot, including a way to automatically buy weapons and armour for your farms I believe we will be the first fighter to support this.1 point
-
Hey @Czar, i did set a custom breaking tile but the script ignore the breaks of OSBOT. Not only on the crabs plugin! Please fix this got banned with this script but i think only cause its not taking breaks. but no other complaints. it is an awesome script !!1 point
-
1 point
-
1 point
-
Added trials gl guys @iroll Blackjacking is not supported yet Nobody has got it working yet but I believe we have the closest so far, the solution to that is to select Unbearded (or bearded if you have higher thieving), I am guessing the bot can't find the target npc (maybe wrong npc typed in?) Either way I will take a look at it If you notice any errors in the console log it will speed things up ^^ Quick disclaimer so I don't get in trouble: Do not buy this bot for blackjacking, it is not supported. I recommend doing ardy knights instead, you'll get around 120k/hr xp which is decent.1 point
-
hey, just got home to try the script and the blackjack is not working it closes the curtain and just stands there am i doing something wrong?1 point
-
Amazing man with lot of helps, and advices I didn't seem a similar creater of the best bot scripts!1 point
-
Done added trials enjoy I recommend using stealth injection + new mouse + multiple breaks per hour1 point
-
1 point
-
1 point
-
1 point
-
If you could make it so that you have an option to world hop or not that would be super good imo1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
0 points