Leaderboard
Popular Content
Showing content with the highest reputation on 06/01/23 in all areas
-
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
-
Script Factory Pro Edition has now been added directly into Script Factory 2.0! Checkout the purchase link below to grab the newest copy of Script Factory! Current list of features: 1. Click to Script 2. Fatigue mode 3. Randomized mouse profiles 4. Advanced debugger 5. Ability to increase method numbers by 'X' 6. Method number debugger 7. Autosave 8. Failsafe auto logout 9. Method Number Formatter (new) 10. Observer Mode (new) 11. Stat Tracker Export (new) ------------------------------------------------- Click to Script: - Build the entire base of your scripts by playing the game instead of scripting! Automatically generate checks and actions without ever having to input any information. The intelligent filter system is able to detect specific entities such as RS2Objects, NPCs, GroundItems and Players, as well as handle Inventory and widget interactions! Choose between Click to Script registering data by name, or id with a simple checkbox! Enable/disable Click to Script on the fly without ever skipping a beat. Finally, the future of scripting is here! Demonstration of 'Click to Script' in real time: Fatigue mode - A form of anti-bot detection that simulates human fatigue characteristics that are randomly generated for each account you run. No two accounts will have the same play-style. Data generated is based on real analytics collected from multiple credible sources, which including multiple university studies. This feature is designed to mimic the fatigue humans feel when performing a task over time. Randomized mouse profiles - Mouse data is a known variable that is tracked by Jagex. This feature is designed to randomize each of your account's mouse characteristics so none of them will be similar one another. You have total control over how random your profiles should be. Advanced debugger - Designed to make your job simple when creating scripts. Find all information you need in one place, without having to hover any Entity like OSBot's debugger requires. Auto cache, populate and update entities on the fly. Track in real time the data for your entity so you can do more scripting and less time debugging. Quest configs, Projectile configs as well as Animation configs have been added to make finding data even easier! Ability to increase method numbers by 'X' - Instead of being forced to increase/decrease method numbers by 1, you may now set a custom amount. This is very useful for users who would like to space out their scripts so they have wiggle room if they ever needed to add another method in later on. Method Number Debugger - Now specifically pin point any issues with your script in real time with the Method Number Debugger. It displays which checks are passing, failing, or are unreachable for any given method number so you may quickly fix any issues! Passed = Check was successful Failed = Check was unsuccessful Incomplete = Check was not validated due to the failure of a prior check Autosave - Say goodbye to losing your work! Now you may customize how often you want autosave to run. Your scripts will be backed up and stored on your computer for easy access. Failsafe auto logout - You will now be able to set a time threshold before your player logs out due to inactivity based on player movement, exp gained or player animations. You will also have the ability to take screenshots before logging out to help debug any issues that could have potentially occurred with your script(s) or public scripts. This will be very beneficial in preventing your account from logging in and out for hours on end, which should reduce bans caused by script malfunctions drastically! Method Number Formatter - Stop worrying about how pretty your script is while you are writing it. Constantly adding new methods, removing old methods, or even shifting things around causes your method numbers to become scrambled. Now, you may simply paste your script in the Method Number Formatter and have it prettify your code immediately! Observer Mode Control an unlimited amount of accounts via one client, and watch them mimic your actions. Harness the power of Click to Script with the new Observer Mode. Stat Tracker Export - Save all of your account's progress in a text file within your OSRS Script Factory folder! Whenever an account logs in, or levels up, their Stack Tracker profile gets updated. This is very beneficial to keep track of your accounts progress without logging in, as well as being able to hook up 3rd party applications to OSRS Script Factory and extract account data. More coming soon!1 point
-
Hey, couldn't find anything on the forums about this but my client has been giving me this error for a few hours now. I've re-downloaded and restarted my PC. It was running overnight and I came back to this. Is there suppose to be downtime on the bot or is there anything else I can attempt? Thanks.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Yes It worked, I just reset the equipment setup and it was good to go again. THANKS!1 point
-
ahhhh man thats so dope man and the hiscores are back i miss having the hiscores and it looks hella updated too. niceeee!1 point
-
hey Im geniunely considering buying this script, and given how good it seems how is everyone's experience with it so far with it1 point
-
1 point
-
Check into anti-pattern and humanization techniques. Simple random checks and camera turns aren't enough to create the small randomization in human movements. That being said, fagex uses a combination of human checking combined with machine learning to determine human v bot behavior. I highly suspect that a machine learning algorithm is behind this, flagging accounts to be reviewed and banned. Potentially, it even bans accounts that it flags with a certain level of certainty (tin foil hats boys n girls). That being said, its better to find ways to make the mouse motion itself seem as human as possible, such as implementing planned randomization into specific actions and motions which would normally be much more exact in a script and less human.. You could also create a small scale neural network, from here you could train said network with a mixture of inputs both human and bot. By teaching it to differentiate between the two, you could then teach it to behave like a human and not a bot. However, this would take considerable resources, both time and asset wise. Also, if you have a poor or rudimentary understanding of programming, ProjectPact actually has an excellent tool which he suggested above. I can attest that it does in fact have the majority if not all of the API capabilities. However, it will always fall short in its ability to be robust beyond the API being implemented directly into a script via an IDE. Through the this, you could gain quite a bit of use out of not only the OSBot API, but potentially others as well.1 point
-
What you need to do is to create your own WebWalkEvent and set a break condition so that it will stop executing the walking code when you need to drink a potion: final WebWalkEvent webWalkEvent = new WebWalkEvent(area); webWalkEvent.setBreakCondition(new Condition() { @Override public boolean evaluate() { return needToDrinkPotion(); } }); execute(webWalkEvent);1 point
-
I dont get how so many people did not understand what you want to do. What you are looking for is the webwalking event. I'm not too familiar with their use, but i think you need to create your own, override the execute method (do your drinking there and then return super.execute()) and then use script.execute() to run it. Code could look like this (did not test it though): WebWalkEvent event = new WebWalkEvent(routeFinder, position){ @Override public int execute() { // do your drinking logic here return super.execute(); } }); script.execute(event);1 point
-
Gotta wait until they post an updated client. Everytime osrs updates they have to tweak the client to work. I would advise not using the client at all until you see something posted on the new release/update section just in case.0 points