-
Posts
11137 -
Joined
-
Last visited
-
Days Won
88 -
Feedback
100%
Everything posted by Apaec
-
Unfortunately I can't really give a time any better than you can - The devs have a busy schedule, and we all find out about the update at the same time that it is released. It shouldn't be too much longer though! (It may already be updated, I haven't checked). Cheers -Apa
-
Heyo, glad you like the scripts Botting to max series sounds interesting - don't rush it though! Botting is dangerous these days... haha. Would love to see the videos when you put them up, really cool idea:) Cheers -Apa
-
Woohoo! let me know when you hit 99, that's pretty awesome
-
Looks like todays update has caused problems with all scripts, I'd hang tight and wait for a new OSBot version to be released (it is normal for things not to work after osrs updated) Sorry about this, unfortunately there's nothing that I can do directly! Cheers -Apa
-
This would only work I reckon if the person who did this had no active SDN scripts hence couldn't benefit that much from stealing code. A way to go about this would be to hire someone for the job. But then you may as well just hire another Dev. To be honest I think alek is doing a really good job with what is in place at the moment, and it is clear he is investing lots of time into the client and SDN. It's a difficult topic without a clear solution, and unfortunately I don't think this solves it (or atleast it didn't last time!) -Apa
-
Looks like todays update has caused problems with all scripts, I'd hang tight and wait for a new OSBot version to be released (it is normal for things not to work after osrs updated) Cheers -Apa
-
Hey Cheers for mentioning this. The script uses the in-built OSBot worldhopping code so if the issue is with this then it will most likely be fixed with an upcoming OSBot update. It is usual for things to not quite work right after updates for this reason! For now i'd recommend finding a relatively quiet world and disabling worldhopping. Cheers -Apa
-
As promised! UPDATE! Version 3.02 Added 'Time until next level' timer to paint: Update should hopefully be live within the next 24 hours. Cheers -Apa
-
Very odd. I will do some test runs, but if it does misclick, it should continually retry until it succeeds as is the nature with state based infrastructures. I'm not sure why exactly that's not working. Thanks for this!
-
Unless they've changed the mapping around the coast of Zeah, i'm not sure what could cause this... When I wrote the CCI support initially, I made sure to do stress-testing from most positions around the sand crab areas and made sure it was reliable. I will do some more of this testing tonight, but if the error only happens occasionally it would be difficult to pin down. Additionally, if it isn't logging anything in the console, that too is worrying. If you see this issue happen again, to help me narrow it down, could you (if possible) take a screenshot, or failing that just let me know what the script status is? Thanks. Apa
-
I will add this for you today -Apa
-
Perhaps, although I would be worried about account safety. Also for some reason the latest update still isn't available, unsure why. I will take a look -Apa
-
Hey I'm not sure what's wrong with botting after updates - if anything it must lower the detection rate as they assume the bots are down(well I guess they would know if their update caused bots to go down)? Anyway, I should be able to detect it as a message does pop up, but perhaps increasing your break time might be more fruitful - this link might be helpful! Cheers -apa
-
Hey Thanks for the kind words. The paths are just a little longer than required to ensure that the script succeeds with the refresh consistently. If this were not the case and the path was borderline long enough, then there would be many occasions where the script would retry the refresh and this would cut xp rates further. Or worse, the script would get stuck in an infinite refreshing cycle. That being said, I will do some experimenting along the coast to try and determine the exact minimum refresh distance and use that to perhaps shorten the paths - I cannot make any promises for now though! Perhaps try the crab claw isle spots, since the refresh pattern is required to be the length of the isle anyway? Cheers -Apa
-
Try and write your script such that they are never relying on a method to execute correctly - as you're writing scripts for a live game, issues like latency drops and disconnects mean you can never fully rely on a method to correctly execute fully every time. To combat this, try and make your script more conditional, i.e if this then do that etc. Hopefully then it will be easier to debug
-
Thanks for the proggie Not sure why the mouse would move like that anyway, - Hopefully it was a one off thing! -Apa
-
it will drag the mouse all over the place only if you're interfering with the bot and trying to stop it moving the mouse out of the screen. If you're using the screen while the bot is running, pause the bot, don't enable client input. As for the superset issue, perhaps it's inventory space? there's no set limit to how many you can take, provided they all fit into your inventory. Make sure your food + ammo looting + crab claw isle fee + potions don't take up more that 28 inventory slots (the gui should prevent this from happening anyway). -Apa
-
Not sure what went wrong there - try now? -Apa done
-
First scripts made, How to use more than one class?
Apaec replied to Lexhanatin's topic in Scripting Help
To be honest, people suggest using this "task/node" based design but really it offers little to no benefit over a simple switch statement, apart from perhaps non-blocking checks. At least for the script that you've written here, it would just complicate things. For a script such as this one, there's no problem keeping things in one place. (Also i'm not really sure why people call it a 'node' structure in the first place?) Instead I would focus on more important things like trying to understand exactly what you've written, for example: if (inventory.isItemSelected()) { fountain.interact("Use", "Jug -> Fountain"); sleep(random(80, 100)); Character me = myPlayer(); // <-- ?? if(myPlayer().isAnimating()) { sleep(5000); } } And also making your script as bullet-proof as possible. For example, what happens if you're standing by the fountain with 28 noted jugs in your inventory, or if both the fountain and banker in your getState() function are null? - Your script should always be in a situation where it can and will do something! Cheers -Apa -
Apologies for the delay, i've started the trial now - enjoy! Wow, 18 hours ?! that's pretty insane!! Thanks for the awesome proggie, i've added it to the front page if that's alright with you -Apa
-
will Decode protect his buddy from negative FB? vote now
Apaec replied to ez11's topic in Spam/Off Topic
I feel like the selling private scripts either needs to be against the rules (again) or needs a clear set of regulations which both parties must adhere to... That, or people who sell private scripts need to put their own framework in place to prevent situations like this happening -
I pushed the update online earlier this morning, but before it can make its way live it is checked by the devs to ensure the code is safe. Since the whole codebase has changed, this may take a little longer than usual, but the updates normally go live after being pushed within about 24 hours. When the update goes live, it will automatically be updated on your scripts list Cheers -Apa
-
Looks like you've deffo got the script up and running Thanks for the proggy, i've added it to the front page if you're alright with that -Apa
-
I have the same problem on my Surface Pro 4 - although it's not 4k it's 2736x1824 I think the issue is that Swing claims to be DPI-aware to windows and hence windows doesn't scale the display, when in-fact Swing is not DPI-aware. This means that any Swing application that you run will be unscaled - since OSBot uses Swing, the issue is present. In terms of a fix, i'm not really sure. You could adjust your resolution, but that's a bit hacky and a pain. Other than that, there's not alot you can do without modifying a java install which is again a big pain. More info here: https://superuser.com/questions/988379/how-do-i-run-java-apps-upscaled-on-a-high-dpi-display -Apa
-
Done & done. Enjoy !! -Apa