Leaderboard
Popular Content
Showing content with the highest reputation on 05/06/19 in Posts
-
Why not? I don't see anything wrong with having them on the same line. -Apa @Lansana Camara Does the player name have a space in it? The names for players may include non-breaking spaces so you may need to account for this.2 points
-
2 points
-
This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!1 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
-
This tutorial will cover everything required to write your own OSBot scripts. Although it is quite lengthy, don't let this put you off - it shouldn't take more than a couple of hours to follow through, at the end of which you will have learned the scripting basics and will have your very own tea thieving script which you can modify to your liking. Good luck! Previous required knowledge: None Knowledge of basic java helps but is not required! What this guide covers: Downloading your code editor (IDE) Basic programming concepts A quick guide to java Writing a script with the OSBot API Running your script Downloading Eclipse: Setting up your project: Language basics: Java basics: Script backbone: Compiling the script: Writing the script: Best practices and conventions: Completed Tea thieving source code: That's the end of this tutorial, hopefully it was useful and concise enough. As I mentioned earlier, remember to ask LOTS OF QUESTIONS! Also remember that google is your friend! ? Although it may seem OSBot scripting is a niche use of java, many questions can translate to more widely adopted counterparts - use this to your advantage. If you have any questions do not hesitate to post as a reply below. Since I follow this thread, I will receive a notification if you do and will do my best to get back to you ASAP! - Apaec1 point
-
Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:1 point
-
Made an earlier post about how all OSBot scripts seem detected, and posted some findings relating to the banrates of changing various things such as timings, clickspeed, movement, and mouse DPI. In testing, I found that almost 100% of all OSBot's mouse movements follow very simplistic patterns that are picked up very quickly by Jagex's anti-bot. This goes for ALL other client's I've tested, all containing some flaw within their mouse movement, whether it be [Other-Bot-Client]'s flawed inaccurate spoofed mouse movement, or [Other-Bot-Client]'s consistency. I've reported these flaws to the developers of OSBot already, but was not met with confirmation on whether or not they'll do anything about it. Possibly because they're still under the illusion that mouse movement doesn't play a big role in detection. So here's a topic to prove just that. First off, let me start by showing that Jagex certainly does record mouse movement: https://github.com/zeruth/runescape-client/blob/master/src/MouseRecorder.java#L40 This shows the frequency of their collection. 50MS ticks, which is equivalent to 20 times a second. Now you could say.. But isn't 50 MS not enough to accurately depict mouse movement? And that is true to some extent, but it's more then enough data to analyse in order to find flaws or patterns. Here's what it looks like to move a mouse on a 50MS tick-rate: https://i.gyazo.com/4eb9de90c1c8a60959e874fb24488ab3.mp4 A common argument may be that collecting mouse movement is an absurd amount of data, but.. They combine the integers into mostly a 2 byte for small/medium, and larger a 3 byte or 4 byte and save/send it as that. That means they can store around 250,000-500,000 x/y captures per 1mb. That translates to around 3.4 HOURS of constant mouse movement data capture per user. That data would obviously build up over-time, but IMO Jagex most likely clears this data either every ban-wave, or every week. Which wouldn't really be that much. You could also compress these integers an insane amount due to how primitive the encoding would be. They also only send movements, not equal, or zero movements: https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3330 - Although, they still keep track of those equal/zero movements: https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3332 So we can see they record the data locally, but do they send it to the server? The answer is, yes. Here's proof of that (Annd they send a loot more then just that...): https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3307 And here's them encoding the difference between mouse x/y movements into a 2 byte integer and appending it to their packet buffer (Only medium speed movements under about 31 pixel per 50MS): https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3342 And here's them encoding movements into a 3 byte integer and appending it to their packet buffer (var10 = mouseY * 765 + mouseX): https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3345 And here's them encoding movements into a 4 byte integer and appending it to their packet buffer (var10 = mouseY * 765 + mouseX):: https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3348 They also can detect when you move your mouse outside of the screen, and how many ticks (Ticks are capped of course): https://github.com/zeruth/runescape-client/blob/master/src/Client.java#L3324 Reconstructing their mouse collection: ||) Equal, or zero movements are tracked by ticks. If you don't move your mouse for 30 ticks, they'll know. They most likely use this for multiple purposes, the biggest being the ability to figure out the entire mouse movement rather then just bits of it. 1) Movement of the mouse is tracked, smalls/medium movements exactly by this (Only medium/small per-tick movement difference under about 30 in length) int yDiff = (recordedY - previouslyRecordedYMove); int xDiff = (recordedX - previouslyRecordedXMove); handler.packetBuffer.putShort(yDiff + (idleIndexesPassed<< 12) + (xDiff << 6)); idleIndexesPassed = 0; movementIndex = the indexes skipped before finding a mouse move in the X/Y mouse recorder. Used to track time between mouse movmenets. 2) Larger movements that are made in less then 8 ticks of "idle" mouse: (Actual location sent) int var10 = (recordedY * 765 + recordedX); handler.packetBuffer.put24bitInt((idleIndexesPassed << 19) + var10 + 8388608); idleIndexesPassed = 0; 3) Large movements that are made 8+ ticks from being "idle" (Actual location sent) int var10 = (recordedY * 765 + recordedX); var14.packetBuffer.putInt((idleIndexesPassed << 19) + var10 + -1073741824); idleIndexesPassed = 0; (Don't mind the -1073741824 or other random numbers. Java doesn't support primitive unsigned numbers, so you have to use hacky stuff to compress your integer sizes) The majority of OSBot's movements would fall under #1's logging. The others are just for larger mouse movements (in terms of last X/Y -> new X/Y). Why do they multiple Y by 765? Because they've capped the X axis from exceeding 764 therefor they can easily mathematically combine the two integers for saving resources, then de-couple them whenever they want. So what does all this have to do with OSBot's mouse movement? Well, I performed a basic test to grab the mouse movement delta's between every 50MS tick (Just as Jagex does) and found 100% consistency among certain parts of their mouse movement patterns: OSBot's mouse movement: https://pastebin.com/AJn2NC31 My own mouse movement: https://pastebin.com/vnGtX16z Right away you should notice many flaws inside OSBot's mouse sample. As you can clearly see, OSBot repeats ONLY 4-5 at the end of movements, AND at the last few deltas at the end of the movement, it goes from Lower, Bigger, Lower, This seems to be the case with virtually all mouse movements over 4-5 pixels large made by OSBot. So if I'm able to detect this flawed mouse movement in a matter of seconds with basic math, then so can Jagex? This would also explain why tasks requiring massive amounts of mouse movement, such as agility, have much higher ban-rates vs something like fighting, or AFK tasks. Does this mean this is the only detection method banning OSBot? Absolutely not. However, in my experience, I've yet to be banned by using OSBot as an API for everything BUT mouse movement, or camera movement (Of course with a lot more human-like behavior sprinkled on top of the scripts). This is purely based on only a little more then a week of botting without a ban, so it's possible I'm not bypassing, but simply delaying my ban. Hell, it's possible I was detected the second my script first started and now i'm just riding a monthly ban wave. Still beats a daily ban wave though...1 point
-
Hey, This dev build brings support for FreeBSD and changed the login handler. Download link: http://osbot.org/devbuilds/osbot 2.5.46.jar FIXES: - FreeBSD should now be supported - Login handler now supports remember username WEB WALKER: - Added missing cave link in Burthorpe - Added farming guild door link MISC: - Minor bug fixes - The OSBot Team1 point
-
v1.06- Fixed dead tree attacking you during Feral Vampyre task. Fixed duel ring restocking for Desert Lizard Task. Made script logout if you get PK'd during Earth Warrior task1 point
-
Don't usually comment but I Purchased this script 1 week ago, and it is amazing. So far no problems and can run for a good lengths, worth every dollar. thanks a bunch1 point
-
1 point
-
Really appreciate the feedback I am in the process of adding update and I will add your feedback to the update list, stay tuned, will be posting the new changelog as soon as I can ^^ thanks guys you are all awesome.1 point
-
Just purchased maybe an hour ago, this works great! Thank you and what a great idea! For someone like me who sucks at organization in general, this is going to be a nice utility to have when things get messy again. There is a few items that weirdly didn't get sorted like a random adamant pickaxe, but that could very well be a one off glitch and I will run the bot again to see if it finds anything that was skipped the first time. Regardless, A+++ program. Now, I say the following not to be an ass or to separate my self as "better than", as part of this community and being a system admin for a fortune 500 company, nothing irks me more than when the end user just says "It doesn't work" and does NOT provide any followup information like screenshots and logs. Do not confuse User Error and the program actually having issues. By posting on threads for bots and saying "It doesn't work" actually hurts the rest of us because the dev's need to reach back out and go back and forth with the user trying to diagnose what is actually a technical error or a user error, when the dev's can be working on making the program more efficient and stealthy. Before posting, try and gather your thoughts and show what the issue is with logs and even a screenshot so the dev can fix it and patch it asap. With that being said, thanks again for a great little bot to make our lives easier.1 point
-
I'm still having problems while trying to bank at draynor. Keeps getting stuck in this house. Keeps walking back and forth not doingb anything. [INFO][Bot #1][05/06 05:56:41 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3099, y=3271, z=0] -> [x=3098, y=3269, z=0]. [INFO][Bot #1][05/06 05:56:41 PM]: Next One: [x=3098, y=3269, z=0] (distance 16) [INFO][Bot #1][05/06 05:56:41 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:56:41 PM]: Walking to: [x=3098, y=3269, z=0] distance: 16 and minimap: false [INFO][Bot #1][05/06 05:56:42 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:56:42 PM]: Walk results: True=[true] Normal=[true] [INFO][Bot #1][05/06 05:56:42 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:56:42 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:56:44 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3099, y=3271, z=0] -> [x=3098, y=3269, z=0]. [INFO][Bot #1][05/06 05:56:44 PM]: Next One: [x=3098, y=3269, z=0] (distance 9) [INFO][Bot #1][05/06 05:56:44 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:56:44 PM]: Walking to: [x=3098, y=3269, z=0] distance: 9 and minimap: true [INFO][Bot #1][05/06 05:56:44 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:56:44 PM]: Walk results: True=[true] Normal=[true] [INFO][Bot #1][05/06 05:56:44 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:56:44 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:56:46 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3099, y=3271, z=0] -> [x=3098, y=3269, z=0]. [INFO][Bot #1][05/06 05:56:46 PM]: Next One: [x=3098, y=3269, z=0] (distance 4) [INFO][Bot #1][05/06 05:56:46 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:56:46 PM]: Walking to: [x=3098, y=3269, z=0] distance: 4 and minimap: true [INFO][Bot #1][05/06 05:56:46 PM]: Attempting to negotiate obstacle at: [x=3098, y=3270, z=0] [INFO][Bot #1][05/06 05:56:47 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:56:47 PM]: Walk results: True=[true] Normal=[true] [INFO][Bot #1][05/06 05:56:47 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:56:47 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:56:55 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3099, y=3271, z=0] -> [x=3098, y=3269, z=0]. [INFO][Bot #1][05/06 05:56:55 PM]: Next One: [x=3098, y=3269, z=0] (distance 2) [INFO][Bot #1][05/06 05:56:55 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:56:55 PM]: Walking to: [x=3098, y=3269, z=0] distance: 2 and minimap: true [INFO][Bot #1][05/06 05:56:56 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:56:56 PM]: Walk results: True=[true] Normal=[true] [INFO][Bot #1][05/06 05:56:56 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:56:56 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:56:58 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3098, y=3269, z=0] -> [x=3099, y=3266, z=0]. [INFO][Bot #1][05/06 05:56:58 PM]: Next One: [x=3098, y=3269, z=0] (distance 0) [INFO][Bot #1][05/06 05:56:58 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:56:58 PM]: Walking to: [x=3098, y=3269, z=0] distance: 0 and minimap: true [INFO][Bot #1][05/06 05:56:58 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:56:59 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:56:59 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 3" [INFO][Bot #1][05/06 05:57:00 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:01 PM]: WalkNewGen Result: 1 [INFO][Bot #1][05/06 05:57:01 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:57:01 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:57:04 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3098, y=3269, z=0] -> [x=3099, y=3266, z=0]. [INFO][Bot #1][05/06 05:57:04 PM]: Next One: [x=3098, y=3269, z=0] (distance 1) [INFO][Bot #1][05/06 05:57:04 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:57:04 PM]: Walking to: [x=3098, y=3269, z=0] distance: 1 and minimap: true [INFO][Bot #1][05/06 05:57:04 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:57:05 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:05 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 3" [INFO][Bot #1][05/06 05:57:06 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:06 PM]: WalkNewGen Result: 1 [INFO][Bot #1][05/06 05:57:06 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:57:06 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:57:09 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3098, y=3269, z=0] -> [x=3099, y=3266, z=0]. [INFO][Bot #1][05/06 05:57:09 PM]: Next One: [x=3098, y=3269, z=0] (distance 0) [INFO][Bot #1][05/06 05:57:09 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:57:09 PM]: Walking to: [x=3098, y=3269, z=0] distance: 0 and minimap: true [INFO][Bot #1][05/06 05:57:09 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:57:10 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:10 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 3" [INFO][Bot #1][05/06 05:57:11 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:12 PM]: WalkNewGen Result: 1 [INFO][Bot #1][05/06 05:57:12 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:57:12 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:57:14 PM]: not near to [x=3093, y=3245, z=0] next point is: Source [x=3098, y=3269, z=0] -> [x=3099, y=3266, z=0]. [INFO][Bot #1][05/06 05:57:14 PM]: Next One: [x=3098, y=3269, z=0] (distance 1) [INFO][Bot #1][05/06 05:57:14 PM]: Found next regional web tile!! : [x=3098, y=3269, z=0] [INFO][Bot #1][05/06 05:57:14 PM]: Walking to: [x=3098, y=3269, z=0] distance: 1 and minimap: true [INFO][Bot #1][05/06 05:57:14 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 2" [INFO][Bot #1][05/06 05:57:15 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:15 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until destination exists 3" [INFO][Bot #1][05/06 05:57:17 PM]: Walk results: True=[false] Normal=[false] [INFO][Bot #1][05/06 05:57:17 PM]: WalkNewGen Result: 1 [INFO][Bot #1][05/06 05:57:17 PM]: walk_suh_result true to: [x=3093, y=3245, z=0] [INFO][Bot #1][05/06 05:57:17 PM]: "last_delay_name" changed to "PresetWalker: Wait 1s until we move 1" [INFO][Bot #1][05/06 05:57:18 PM]: Script Perfect Woodcutting has paused!1 point
-
Just checked the code it only picks them up if you enable it, I think only list mode has it for now but I will extend the option for all, just need to debug the actual looting part and I will push update ^^1 point
-
1 point
-
Bug report (or feedback) Whenever i have a super combat pot in my inv it will go and drink it. There is no option ticked to boost either str/def or atk. Prayer and range are ticked tho.1 point
-
Just got your script yesterday. Been using it for a few hours testing the different settings. Just a couple notes I have seen: 1. When using the pre-walk method and the custom stack method (81-84) may I recommend that the script only pre-walk on the third (or final) deposit. Otherwise if the script pre-walks every time it looks rather bot-like. A human would see how much they have then go back to mining. 2. Repairing the wheel/hammer. May I recommend if this is checked it only repairs on the final stack (if doing more than one), this also makes it look like a bot. Nobody would repair it then go back to mining (and not drop the hammer either). They would repair it after their sack is full (unless they can't deposit). 3. The walking method to the stairs and to the sack. Always clicking the map then the respective object is a bit bot-like as well. Always walking to the same spot, and not an efficient area either (west of the sack or east of the stairs). 4. Finally, I would recommend if gathering gems, you add the option to bank them after depositing the minerals in the hopper. This way, they can gather 28 on the next trip. Rather than ending with 3 or 4 gems by the final deposit and having to do a 4th trip. Besides those few notes I find your script absolutely beautiful.1 point
-
Yeah I did set a safe spot tile and set fighting bounds next to my safe spot, but for some reason after the bot loots the drops it just stands of that exact spot and attack another npc instead of going to that safe spot tile. EDIT: Got it working, thanks for your support!1 point
-
Glad to hear the webwalking improved, I will be pushing another update regarding bird nests as soon as I can ^^1 point
-
1 point
-
Thanks! The issue was dealing with space. Fixed by converting white spaces to nonbreaking spaces.1 point
-
1 point
-
Hi, selling 82m @ .62/m for a total of 50.84$ BTC/XRP/ETH you go first ofc Msg me on Discord: Hope#0770 455996427546656769 (ID)1 point
-
Hey! Super sorry for the waste of a reply if there is a super easy fix. I'm just getting back into botting and have never botted high level alching before. Every time I try to high level alch Earth battlestaff's (and I've checked that 'Earth battlestaff' is being spelled correctly in each attempt to fix this) something seems to go awry where the bot opens my spell book, then just clicks the x to log out and does nothing. I thought maybe it was a rest / break I had set after a certain amount of time, though everything is off and this happens after waiting 4 hours as well as giving everything a hard restart. Thanks for the help / un-lobotomizing of my ways in advance x)1 point
-
Honestly really impressed with both threads, read through them both over the past day or two and you've achieved some great stats from recordings.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
When alching why does it get stuck outlined the spell at random times and just sits there? have to manually fix it.1 point
-
How do you set it up for ranging safe spots? Trying to set it up for Hill Giants in F2P and the bot attacks any hill giant and suicides without food. Might be a dumb question sorry lol1 point
-
Uhm im having fps drops. In the log im getting this [INFO][Bot #1][05/05 11:09:14 PM]: Animation received, new [713] every 4 seconds, is this normal?1 point
-
1 point
-
Good news: the webwalking works fine so far, although I have only tested on preset options. Will test the map selection mode next. Edit: Webwalking in map selection mode works perfectly. Bad news: I've run the script for 2+ hours and didn't loot any birds nests, but instead proceeded to woodcut. Next time I'll be keeping a better eye on the log.1 point
-
1 point
-
1 point
-
1 point