-
Posts
1430 -
Joined
-
Last visited
-
Days Won
82 -
Feedback
0%
Everything posted by Maxi
-
Oh ok. @the people who get an incorrupt jar file, try once more, delete and redownload. If it still doesn't work I'll send you a link in PM.
-
Object interactions seem to be fine, I'm stealing from stalls atm without any problems. Can you be more specific.
-
Restart your client. Restart your client.
-
RS updated to revision 15 today and normally we would not have to upload a new jar for OSBot as we would simply replace the hooks file and restart the server. Unfortunately some of the callback code was partially broken, so after a quick fix and some testing we had to release a new version. The good new is that our updater had no broken hooks as far as we've been able to test and see, so next time updating will be a matter of 2 minutes . This unfortunately also means that all previous versions prior to BETA v1.4.3 of OSBot will no longer work. Download can be found here: http://osbot.org Remember to refresh the page with CTRL + R if the download still downloads 1.4.2 Have fun, OSBot.org
-
IP.Chat will most likely be deployed this week or next week.
-
Aren't free users supposed to be able to open two tabs?
Maxi replied to danieljvdm's topic in Archive
Our intention is not to ruin Runescape's economy and it will never be. Therefore, anyone who aims to benefit on top of the free tab they have, can clearly find a way to bring together the funds for VIP. In fact, one day of botting with VIP can already return your money on VIP. The only reason I see fit why people might need more than one tab without the purpose of gaining extra benefit over others in Runescape is when you are developing certain scripts that require two accounts to interact with each other. People who need it for developing scripts can see it as an incentive, trial and official script developers get all the VIP benefits by default. -
Our vision is as follows: We are a free bot where people can run one bot at a time without VIP. If people want to have multiple bot tabs, they are aiming for benefits in the game in a bigger extend. Therefore, we believe a price can be paid by those people, simply put your benefits can make the price of VIP back in one day on multiple accounts. If you don't like it, you are not forced to use it. There are other old school bots out there that require you to pay a monthly fee to get access to the bot. Others, simply put, will not reach as far as we do and don't and probably will never have the quality we are aiming for. I'm closing this, because there is nothing to discuss here.
-
Hi everyone, It has come to my attention that it's not clear for everyone how to handle exception in OSBot scripts. Various pieces of code in the OSBot client throw InterruptedExceptions. Everywhere where you have a try-catch block you have to make sure you add specific clause to catch InterruptedExceptions in which you then have to throw, in front of any other catch clause. If you're only adding try-catch blocks to catch the InterruptedException, then make sure you are just adding the throws statement to the method signature and remove your try-catch block entirely. The reason this is important is because the client uses interrupted exceptions to switch behaviour, for example when the bot will switch from the script to a random executor, or when you pause your script. Here is an example: /** * Gets called recursively on the bot's main thread. * * @return The timeout to sleep after running one loop cycle. */ @Override public int onLoop() throws InterruptedException { try { scan(); switch (state) { case IDLE: return 100 + gRandom(100, 50); case STEAL: return steal(); case TO_BANK: return toBank(); case BANK: return bank(); case TO_STALL: return toStall(); } return 20 + gRandom(100, 100); } catch (InterruptedException e) { // <---- VERY IMPORTANT ----> \\ throw e; // <---- VERY IMPORTANT ----> \\ } catch (Exception e) { e.printStackTrace(); return 100 + gRandom(200, 100); } }
-
What bank issue? Withdrawing works, depositing works. I don't know what you're talking about.
-
You're an attention whore.
-
BETA v1.4.2 is hot fix for BETA v1.4.2. The following updates have been addressed in this release: Fixed slow mouse movements on entities Fixed issue with clicking on weird places for example report abuse button Improved walking Extended API with a couple of useful methods Fixed issue with interface misplacement Fixed issue with changing vertice counts for models Fixed issue with main screen clipping intersection Probably more that I can't remember Download can be found here: http://osbot.org Remember to refresh with CTRL + R if your download still downloads 1.4.1 OSBot.org
-
Try again @specops5000, I've removed all failed/pending invoices.
-
You shouldn't, it's smooth for most people. Just try it out.
-
Because some of those bugs are encountered by for example only 5% of the people or less. So in my opinion, as long as we are in BETA, we support older versions and release public newer versions for testing. For example, the slow mouse movements, are so far only encountered by 3 or 4 people out the entire group of people who have used 1.4.1. (edit: apparently it happens more often on moving entities like npc's). Using only the script writers would not uncover all bugs. Once we leave the BETA, we will setup a release cycle with release candidates that will be tested before updates.
-
We are pretty much finished with what we aimed for 1.4.1. I'm waiting for Laz to return from a family event he's attending at the moment, in the meanwhile I'm just playing around, tweaking, trying to score bugs etc. Hang in there ;).
-
We will release 1.4.x tomorrow unfortunately. We are 95% done, but can't afford to release without having tested the last few things.
-
All all this can be scripted already.
-
I'm happy to announce that we expect our SDN to be and running by the end of sunday and with this most, if not all, random events included in the SDN and automatically loaded onto your computers. On another note, I expect BETA v1.4.1 by tonight. My list is still long and there have been many distractions around OSBot that needed our attention, however I will work on v1.4.1 for the coming 9 to 10 hours so that should be enough. Stay tuned all ! OSBot.org
-
What you can expect from the next OSBot release v1.4.1!
Maxi replied to
Laz's topic in News & AnnouncementsThese are just pre programmed values. We can and will change it to load and save the settings, however I'm not sure if with our current list of priorities we will manage to squeeze it in for this update. But in any case, we will make sure debugs are turned off by default initially. -
I'm sorry for the delay of this release. I have spend more time than initially calculated to do a couple of these updates, and today and yesterday our country was completely in party mode because of the crowning of the new king, an event I of course had to attend. I will work as hard as possible to get this release out within 2 days.
-
That's a very unlogical thing to say. See, we need to spend money to set up a limited liability company which will effectively make our chance on existence in the long future significantly bigger, legally speaking. This is how p****bot more or less manages to stay around. However this is not a cheap investment, so please next time try to gather some important information first, before holding people back to invest in the future of OSBot.
-
That's caused by errors in your scripts, not OSBot.
-
OSBot is not open source and won't be in the foreseeable future.