

Alek
Ex-Staff-
Posts
7878 -
Joined
-
Last visited
-
Days Won
203 -
Feedback
100%
Everything posted by Alek
-
Too many santa hats, the tree is nice.
-
mirror mode Banned after 30 hours of combat botting
Alek replied to Ramlade's topic in Botting & Bans
Botted on a fresh account, then botted at rock crabs for 15 hours. Unfortunately I think you already know why you were banned. Limit your sessions to less than 4 hours and only start botting after some period of time. That's if you really care about your account and don't want it to banned. Of course everyone wants to be insta-maxed. -
to whoever moved the private scripts & trials section
Alek replied to Team Cape's topic in Spam/Off Topic
Thanks. Didn't make sense for it to be in downloadable scripts section. -
I do expect Extreme Scripts to follow up and try to remedy the issues you are having; it would be very unbecoming of a Scripter 3 otherwise. Please allow him a week or two to try and catch-up (provided he is physically able to). If you are still having major issues, please contact me.
-
The "ban rate" is similar among all of the injection/reflection bots (without accounting for Mirror Mode/Looking Glass). Likewise, color bots vary in terms of detection. ABC "anti-ban" harps on older techniques that may have been effective in the past, but are pretty ineffective now. If it was effective, OSBot would be dead and nobody would ever be getting banned. For basics; watch where you bot, how long you bot for, and how many accounts you have running on the same ip. You should be choosing your bot based on the scripts available and features in the client.
-
The upper-staff at OSBot agreed that we only "tolerate" private script sales; meaning that we allow them to happen but won't get involved with any disputes. This was kind of a general understanding for a while, but I'm now forced to make clear guidelines. Please review the following: http://osbot.org/forum/topic/110929-private-script-sales-warning/ Reason being, OSBot doesn't make money on private script sales so we shouldn't be investing our resources into it. Likewise, other botting communities tax private script sales and are heavily regulated. Now since there were no clear guidance prior to posting my topic, I'll let the staff appropriately handle this individual case.
- 24 replies
-
- 13
-
-
We've made this announcement in the past but it seems the rules are difficult to find. What the OSBot Staff will NOT do: 1. Provide support for breaches of contract; exceptions are detailed below. 2. Review any script code for viruses or remote shutdowns (which stop the script from working). 3. Test the script for functionality, or review any part of the code. 4. Look into cases where a private script is leaked/re-distributed. 5. Read any correspondence outside of OSBot. This includes Skype, Discord, Facebook, or any other third-party communication. OSBot Staff will disregard any dispute regarding private scripts if the scripter you've hired is NOT an official scripter (S1/S2/S3). What the OSBot Staff Will do: 1. Look at cases where a member was infected by a private script. Remember that the Staff won't review your script unless out of courtesy. Hire someone to review your code if you don't know how. 2. Look at cases where either party was clearly scammed; reviewed on case-by-case basis. -Examples: --Clear Scam: Scripter takes payment and doesn't deliver the script --Clear Scam: Scripter delivers the script and is not paid --Clear Scam: Script does not function at all, (can't complete a full cycle of the task) --Not Clear: Script performs task, but fails after X minutes --Not Clear: Agreed upon script feature is broken, but overall script works --Not Clear: Terms of Service/Agreement not met 3. Look into cases where a private script is being sold multiple times (general rule of thumb would be 3 or more sales). Overall use your best judgement and get recommendations from friends. Use the feedback system to report good and bad experiences, that's what it's there for.
-
Why is a private script sale in the Dispute section?
-
Original Story by: @DuaneCiampa
-
I finally got around to patching web walk teleporting. You should be able to use both normal and lunar spellbooks with various runes and staffs. I tried to not re-write everything and only fix the issue at hand, but at some point a re-write will be needed. Ensure your scripts are working on 2.4.101 before I push this as a stable release. Also travelling to Zeah through Veos should work again. Thanks! Development Build Download: http://osbot.org/devbuilds/osbot%202.4.101.jar
- 17 replies
-
- 20
-
-
Things got a little heated at this Thanksgiving dinner
Alek replied to Kittens's topic in Spam/Off Topic
This is so old. -
Remove the first two lines, they are doing nothing at all.
-
Most programmers avoid order of operations by forcing parenthesis to ensure the order is correct. Typical mistake: bool1 || bool2 && bool3 Some people might think it's evaluating (bool1 || bool2) && bool3 when it's really bool1 || (bool2 && bool3).
-
Escorts (18+) For us rich buissness men ONLY
Alek replied to OG Botter's topic in Community Discussion
How is this a community discussion? -
if (ore.isVisible()) { if (!myPlayer().isAnimating() && !myPlayer().isMoving()) { ore.interact("Mine"); sleep(random(2100, 3800)); mouse.moveVerySlightly(); } } else { getCamera().toEntity(ore); } Redundant code that essentially does nothing. Default InteractionEvent makes camera movements, checks for object visibility, walks, etc. You will get the exact same results (except the interaction is performed faster) if you just do: if (!myPlayer().isAnimating() && !myPlayer().isMoving()) { ore.interact("Mine"); Also look into ConditionalSleep and replace your static sleeps: sleep(random(2100, 3800)); Additionally, your "random" sleeps aren't really all that random. It's some tinfoil nooby stuff, especially the small delays: return random(210, 320); You can keep the longer sleeps deviations, but the above is kind of pointless. if (oresMined > 200 + random(20, 100) && !myPlayer().isAnimating() && !myPlayer().isMoving()) { sleep(random(3100, 3800)); worlds.hop(hopWorlds[random(0, 9)]); } Not bad, but if you are on a dead world why would you want to hop to a potentially full world?
-
Watch how you play, then mimic that in your script. It's a repetitive task, there's not much you can do about it. I mean you could try adding misclicks, but that's still a bit "tinfoily" and probably won't yield any different results.
-
Maybe next dev build, the param will be called "norender" under "allow" flag (in case you want to get your custom loaders ready).
-
API Docs updated
-
Changelog: -Added Arceuus Spellbook -Patched norandoms throwing NPE when combined with -script param -Fixed issue with one-time Worlds initialization on first hop Edit: API Docs are updated (finally)
- 37 replies
-
- 21
-
-
Ive never had OOM exceptions using web walker in my scripts; but the script writer already confirmed it's unrelated to web walking whatsoever.
-
Web walker doesn't create an array of positions; we wouldn't be able to do things like use gnome gliders and travel through the charters. Also no, those links aren't available in the public API. Everything is still under a bit of heavy development and I'd like to be able to modify classes without hearing the kicking and screaming.
-
Watching your posts over the last month or two, you spend a lot more time thinking about everything else besides making the script itself. Make the script and as you write it, you will know the path you need to take. Some scripts are small and are best suited for simple loop logic, other scripts benefit from Tasks/States. It almost sounds like you are going to university and you're trying to directly apply what you learned into programming. Start simple and expand from there.
-
Just FYI this method is going to probably break in 2 days.
-
You can do that right now with pretty much any version of OSBot.