Alek
Ex-Staff-
Posts
7878 -
Joined
-
Last visited
-
Days Won
202 -
Feedback
100%
Everything posted by Alek
-
I want to have whatever bliss you have if you think any game non-prime past DMG has all legit players.
-
My trigger works, there are just some slight issues on comp servers. Probably will fix it in a week then go back to selling.
-
The least serious is the botting and bans section.
-
@Swe I'm probably going to need the script writers to debug and tell me what the specific issues are.
-
@Saiyan Nice no clip you hacker, reporting you to Valve. Btw I can't upvote my own map because I have a VAC ban on it.
-
Finally finished my CSGO map. Check it out here: http://steamcommunity.com/sharedfiles/filedetails/?id=923833164 Played on it with 6 of my friends and it was a blast. It took me a while to learn a bit about displacements, skybox, lighting, and all the quirks with Hammer. There aren't many dark or snow maps, so I did both. Hopefully you guys find use with it as a warmup map or some general fun.
- 10 replies
-
- 10
-
A description of the issue would be very nice.
-
Compress the image or use tones which are closer to each other to help with compression.
-
Or learn to write your own, it's a useful skill. For what you are asking, it's like 30 lines of code.
-
It will fail if the position which was chosen at random is unreachable; in both WebWalkEvent or WalkingEvent. WalkingEvent event = new WalkingEvent(Entity entity).setDistanceThreshold(1); execute(event);
-
It was a third party theme which was causing a lot of issues for people, as in OSBot not working at all. The current theme is the operating system default. I may try and customize it in the future.
-
Looks normal on mainstream linux distros, windows 7, windows 10, and mac osx (or whatever the hell the newest one is). What OS is this?
-
I assure you that if you do not bot during normal business hours, only time you get banned is when the employees get called into work on the weekend to develop new mtx ideas for RS3. During this time game developers visit old school to ban bots. They do this manually by taking a stop watch and timing time in between each clicks on auto alcher.
-
If you use human mouse movements it will prevent the ban.
-
If you drop vertically it gets rid of all bans.
-
You are 100% undetectable on weekends because game developer is not at office. Bot as much as you would like when they are not at work!
-
Bans are only manual. This is 1997, there are no autodetection methods. Close thread.
-
13.2%, however if you purchase premium macro cutter its only 9.6%.
-
Ternary is a fancy if else. temp = (n < 2 ? 1 : n * factorial(n-1)); Its the same as writing: if(n < 2) { temp = 1; } else { temp = n * factorial(n - 1); } You could also do something like : temp = (n % 2 ==1 ? ((n + 1 > 1) ? 0 : 1) : pow(n, 2)); - which are two if elses combined.
-
No, that's ridiculous. If tomorrow I decide to drop my items diagonally instead of horizontally of vertically, you're saying that I will get banned?
-
If you ever get banned purely on the fact that you drop your items horizontally instead of vertically, I'll quit OSBot and make you the new developer. I'm not even kidding, PM me if you ever find that out. Also take a look here for an answer to your question: https://osbot.org/api/org/osbot/rs07/input/mouse/InventorySlotDestination.html
-
I'm aware of this issue and I know the reason why, it's been persistent for a few versions.
-
Download: Click here I took a look at some annoying issues between Windows, Mac, and Linux since they all decide to do their own thing when it comes to window decoration (setting title bars, adjust frame sizes, etc). I found a solution that works for Windows and Linux, which means it should also work for Mac as well. These frame changes were made only to the main client interface, but if all goes well I'll do it to everything else to ensure OSBot looks exactly the same across all operating systems. Additionally I slightly modified the Boot interface. Your OSBot should look like exactly like this (minus the various OS decorating): Additionally we made some changes to MoveMouseEvent to try and speed up some reaction time, let us know if that works any better. Additionally V2, I tried to speed up OSBot loading so bot farmers should try and test spam opening multiple clients. Let me know how this works for you guys, especially you darn Mac users.
- 40 replies
-
- 15
-
I think its an issue when you stop a script which throws an InterruptedException or gets caught in some sort of loop. I mean the way to fix this is to have scripters check to see if the script is stopped during all states, then breaking out of whatever they have if it is. Chances of this happening is not very likely at all though haha.