Everything posted by Maxi
-
Random busting day
Hello my dear fellow botters, With the stress of the last days to get the SDN up and rolling and setting people up with their SDN access, I have been sad about the fact we have not had the time to straighten out the last of those randoms to become a 100%. So today is the day that I will solely focus on randoms. So far from what I have been reading on the forums these randoms that are currently supported by OSBot do not work, or do not work correctly all the time: Frog Queen (outside cave) Maze Freaky Forester Surprise Exam Pinball Molly Ones that I will be writing today are: Evil Bob (edit: Written) But I can't do this on my own. I need your help today. I took the day off, so I'll be here most of the day, busting randoms and perfecting them. I need your accounts, stuck in randoms. So please message me in a private message today if you encounter any randoms! Status: Waiting for randoms Sincerely, Maxi
-
World Selector
I have added a tiny utility to set your fixed default worlds and start a specific world. This will be available on the next release. Stay tuned! OSBot.org
-
BETA v1.6.3 (RANDOMS + SDN BETA)
Updated it to 1.6.3 with a couple of hot fixes.
-
BETA v1.6.3 (RANDOMS + SDN BETA)
That was a typo, should have been "when you're not running a script".
-
BETA v1.6.3 (RANDOMS + SDN BETA)
Hello everyone, We are very glad and proud to announce that with this release the SDN is finally available for public. Furthermore this version contains a couple of bug fixes for bugs introduced with 1.5.12. Work on randoms that has been done: Fixed lost and found (appendages teleportation random) Modify Molly partially, untested though Fixed freaky forester Fixed maze Work on the OSBot client that has been done: Added SDN script availability New accounts GUI and backend support Random management system Ads no longer pop up when you're not running a script GUI buttons are back to how they were before, like real buttons General bug fixes all over the place Please note that the SDN is still very immature and we might have to update a couple of times in the future to remove bugs that we have missed. To add scripts, go to the store here: http://osbot.org/forum/store/ and check out the scripts you want to add. Then click the refresh button to load them in your script selector. We will be releasing a manual for script developers and for bot users how to use the SDN in the coming days. Also, in the coming days we will start adding scripts to the SDN and give access to the SDN for script developers. Download can be found here: http://osbot.org Sincerely, OSBot.org
-
BETA v1.5.12 (RANDOMS BETA)
It's one or two minor things that were changed that's causing this, I hope to be reverting and testing it today.
-
Other bot Hackings
I posted something about this a couple of days ago: http://osbot.org/forum/topic/2744-attention-must-read/
- Count to 50 before a staff post!
-
Random management system + new account GUI
What are you talking about?
-
Random management system + new account GUI
Hello everyone, Here is a heads up on what I have been working on the last two days. I have written the random management system, which will allow script writers full control over how to handle randoms. For example, let's take the case of an autofighter. You get a strange box and you're in combat and not in a safe zone. The programmed random solver for the strange box will recognize the strange box and try to solve it, but it will close the interface constantly because you're under attack. Your autofighter won't any longer be in control, so eventually you will die. Here is where the random management system comes in to play. In this case you want control over what happens before and after solving the strange box, more specifically you want to make sure you are out of combat and in a safe zone when solving the random, you want the random to be solved as programmed by default after that and you want to finish by walking back to your fighting spot. Here is a simplified example of how that would work with the random management system (note that the onLoop doesn't have to be overridden at all here, I just put it here for example purposes): @Override public void onStart() { this.actStartTime = System.currentTimeMillis(); randomManager.registerHook( new RandomBehaviourHook(RandomManager.STRANGE_BOX) { @Override public boolean shouldActivatePreLoop() { return myPlayer().isUnderAttack() && !myPlayer().isInArea(SAFE_AREA); } @Override public int preLoop() { walk(SAFE_AREA); return gRandom(600, 300); } @Override public int onLoop() throws InterruptedException { return super.onLoop(); } @Override public boolean shouldActivatePostLoop() { return myPlayer().isInArea(SAFE_AREA); } @Override public int postLoop() { walk(FIGHT_AREA); return gRandom(600, 300); } } ); } Furthermore, I have been working on a new GUI for accounts and a fresh system on the backend of it. One reason for this is that the accounts system simply wasn't user friendly and intuitive, another reason is that there were bugs occurring with it sometimes. Accounts are ordered in alphabetical order and you can now set your preferred experience rewards chosen when encountering a genie lamp or book of knowledge per account. Here is a picture of the new accounts GUI: These updates will be fitted in the next release. Sincerely, OSBot.org
-
BETA v1.5.12 (RANDOMS BETA)
The client says 23, but those are the files that handle the random events. From the 23, are 3 built for bank pin, login and welcome screen. But from the other 20, there is one that handles like 6 or 7 randoms.
-
Maxi's Super Clay Softener!
Updated script. Now runs a higher amount of clay per hour.
-
Forcing right click on entities
Why would you want to force a right click?
-
I got Hacked
I have checked his entire folder, all scripts, everything is clean. Closing this now. Read this for more information: http://osbot.org/forum/topic/2744-attention-must-read/
-
I was hacked.
http://osbot.org/forum/topic/2744-attention-must-read/
-
BETA 1.5.11 (RANDOMS BETA)
There are minor bugs in certain randoms that cause them to not be finished. I've seen freaky forester, drill demon and molly occasionally not finish the random but perhaps like 70-80% of the time. We will make sure this becomes 100%. Also, I have yet to add Evil Bob, luckily I've collected all the data for it, and fix up the lost and found random. Today we will also release the random management system.
-
The person that infracts/warns/bans
http://osbot.org/forum/forum/88-vip/
-
Random improvements of May 17'th
The other ones are not added at all so that's why. They will get added in time, for example I have been gathering data for the Maze random event. Freaky Forester shall be fixed asap btw.
-
I got Hacked
Zip all these scripts up and upload them. Send the link to me in a private message and I will check it out to verify whether a script is involved in this or not.
-
Looking for accounts in the Maze!
If you have an account in the Maze and are willing to let me gather the much needed data to write the Maze random event solver, please drop me a private message. Thanks, Maxi
- Hunting
-
Some of my proggies!
Today I'm writing my own tabmaker too, need to get some cash flowing here to test some scripts.
-
PID tracker (for staking)
I'm surprised actually because what I can remember from back in the days is that it was based on PID.
-
PID tracker (for staking)
Hello everyone, Would you care for OSBot to have a PID (player index) tracker? It is believed the OS server is structured in a way that it stores its players in a collection, most probably an array, by their player index. The update procedure for OS is a loop, which loops through the collection of players from start to end. This means that a low player index, lower than your opponent's, will get your character's actions processed earlier than your opponent. Sometimes in the same tick, sometimes the opponent will delay an entire tick, giving you advantage in your staking duel. Discuss.
-
Marijuana: Legal or illegal.
I do use on a an occasional basis after a period of stress when I know I can sit back and relax for a moment. For example after a period with a lot of tests, or being very busy in general. It makes me calm and takes away the need to do things, which in my personal experience is a good stress relieve if not done on a regular basis. Either that, or going out with friends, but I'm sure that the physical effects of alcohol are more severe for your body.