

Alek
Ex-Staff-
Posts
7878 -
Joined
-
Last visited
-
Days Won
203 -
Feedback
100%
Everything posted by Alek
-
Wrong place, plus it has already been reported.
-
07 banned
-
Since the two behemoth releases introduced less than 48 hours apart, we've been working hard to ensure that the transition process has been going smoothly. Although I'm sure not everything is completely patched, we're starting to settle back into a stable state. Please thank @FrostBug for donating his account for the Bank Pin solver patch as well as finding the correct values for Prayer. Changelog: @Alek's updates: -Complete patch and re-work of Dialogues API -Hotfix for Chivalry and Piety -Patched and improved BankPin solver -Fixed Script Selector packing issue --The interface should no longer get stuck -Small gui update to booter @Maxi's updates -Further improvements to Widgets and implementation --Visibility checks explored and evaluated Have a great Sunday/Monday, -The OSBot Staff
-
It's available for sponsors, VIP/Sponsors/Staff are grouped together in the same category. If you don't have access please let me know.
-
[#2] SDN Weekly | Script Releases | News & Updates
Alek replied to Extreme Scripts's topic in Community Discussion
Nice thread layout. -
There will be bugs on a good handful of configurations out there, so please be mindful of the beta status. Remember to post as much information as you can in regards to any bugs that are apparent (errors, computer information such as OS, 32bit/64bit, etc). Tomorrow is the weekend so all developers will be in full swing in meshing all these behemoth projects together.
-
That's not really dynamic because it still creates a pattern. Furthermore I would be safe to say that a majority of bans stem from either client detection (which we are working on), average bot play time vs average human play time, account age, and activities that you are botting. In regards to what sleeps you should be using here at OSBot (or botting in general), it should be conditional. What happens if you get a lag spike and your sleep time of 1kms isn't enough before the next action? Either it will fail the next action or loop through your logic again. Take a look here: http://osbot.org/api/org/osbot/rs07/utility/ConditionalSleep.html
-
Please screenshot and respond here with the picture.
-
This was not meant to replace response codes.
-
Funny that you mention this because Maxi wanted me to work on OSRS update handling found here. There are a few codes which already exist that should be able to tell this.
-
I've always wanted a way to collect data visually and although this approach is impractical for many applications, there are a few advantages in having optical character recognition. Below is a short demonstration video in scanning the screen for the character 'E'. https://www.youtube.com/watch?v=itYcXz5603w This is my first time ever trying to make an OCR type of system and I am pretty clueless to what algorithms already exist. Searching a canvas for a single character alone consumes a ton of resources and ensuring that my search is optimized is very important. When developing the OCR search, I initially came up with something I called the ink blot. The ink blot would search pixel by pixel and try to create a shape based on the color of pixels which surround it. This shape would then be compared against the character which I was searching for and determined if they had identical points. The problem was clear, after about 500 pixels (I was searching over 250k pixels), creating shapes for each pixel point was too resource intensive. The second search method which I created is something I'll refer to as the typewriter. The character which I'm looking for is essentially stamped at each position and checked to see if the colors at that stamp match the points of my character. This means the character 'E' was checked quickly over a few thousands times at varying positions on the screen. ocr.setBot(getBot()); if (ocr.getBot() != null) { OC character = ocr.findChar('E'); if (character != null) { System.out.println("Found character at: " + character.getX() + "," + character.getY()); } else { System.out.println("The character was not found!"); } } else { System.out.println("The OCR bot is null"); } This was a fun project which took me a little under 3 hours to complete, so searching for full words and other features from a fully developed OCR system is not apparent. With this said, would any script developers or botters find use from something like this?
-
This is so hard-coded that scientists have recently identified it as the new hardest substance known to man. On a serious note, I believe you copied the incorrect code. If you didn't, you should be analyzing each if statement.
-
I thought it was pretty self explanatory. Is there anything in the interface I can do to make it easier to understand?
-
Uhh, why are we still discussing the PositionFilter? It's already implemented: http://osbot.org/api/org/osbot/rs07/api/filter/PositionFilter.html
-
Due to the large spike in users over the last few weeks, we were able to gather a lot more information on a connection error certain members were experiencing. Furthermore, random event solvers have been disabled and cleared from your profile accounts until we can ensure each solver is fully functional. In the meantime, you can "dismiss all" random events or simply ignore them. @Maxi's changes: -Optimized general connection procedures -Wrote custom SSL handlers to successfully authenticate affected users @Alek's changes: -Disabled toggling random events --Random event settings are overridden on account profile load Remember to report bugs in the Errors & Bugs forum; we are very vigilant and rely on our members to make swift modifications as bugs become apparent. Happy Monday -The OSBot Staff
-
Today I finally got around to promoting some of our finest to the ranks which they deserve. @Divinity has been promoted to Script Manager. - You were a natural choice for us and there was nobody else who was more qualified than yourself. As a Super Moderator and OSD, you were ready to take on newer challenges and responsibilities. I was very reluctant to someone else other than myself stepping in, but now I am very eager to work alongside you. @Czar has been promoted to Official Script Developer. - I swear it was people spamming me 100x a day to promote you (just kidding I hate getting nagged). I knew you were ready, however your initial OSD Application was lacking distinction. After showing me some of the amazing projects you have previously worked on (and reflecting that in your application), you clearly defined yourself as a well rounded programmer. Continue your work and your skill set. Also you have 1 week to release your slayer script before you get demoted. @Valkyr has been promoted to Official Script Developer. - Your application was accepted on a pretty rare circumstance; acceptance based purely on your script source code. You discussed varying backgrounds in the field of programming without much physical proof (snippets, screenshots, etc.). This lead me to grading you purely based on your scripts, and I was pleasantly surprised to do so. You've really stepped above and beyond what I expect from a typical script; readability, cleanliness, strong OOP, and great packaging. The web-walking sealed the deal, welcome to the club. For the other applicants, I may or may not have already sent you a message on where you need to improve on. Please keep in mind that additional projects besides OSBot scripts is highly recommended. For me to accept your work, I'd like to see something tangible (screenshots, snippets, videos, etc). Once again, congratulations to all three. -The OSBot Team
- 25 replies
-
- 13
-
-
Welcome to the inner-circle (*cough* evil empire *cough*).
-
As soon as someone reports it properly we'll look into it.
-
I'd rather us debug what the problem is because our walker has a little bit more to offer than something made in 15 minutes.
-
Is the destination you are trying to reach unreachable?
-
Firstie
-
Firstie.
-
Do not claim a scripter infected your computer without substantial proof. From the sounds of it, you downloaded OSBot from YouTube and not our website. Never download any software from anonymous links on YouTube; it should always be from the software website.