Everything posted by Alek
-
Coffee
Sometimes with sugar, mostly black though!
-
hopToP2PWorld Event Servers
Its not part of the filter, something I can add.
-
OSBot 2.4.147
I'm 99.9% sure I added script selector navigation with arrow keys. I'll look into name sorting!
-
ALL Chatbox users unite
Stop tagging us, we are already working on this!
-
OSBot 2.4.147
I liked the logger attached; to me it makes more sense to just start OSBot through CLI if you wanted a separate logger. Did it out of consensus though!
-
OSBot 2.4.147
Changelog: Patched Quest API Added old logger interface -Removed client logger Human input can be cycled using hotkey (numkey 9)
-
This acc will blow your mind [PC]
50M for -50 exp with the new rev lamps.
-
OSBot 2.4.146 - Input + Screenshots
I never make changes that I don't include in the OP
-
OSBot 2.4.146 - Input + Screenshots
Thanks! I'll ask around, I heard about some changed we wanted to make, not sure if they went through with message listener though!
-
Supported items by WebWalkingEvent
I'll see what I can do with coming up with a list.
-
OSBot 2.4.146 - Input + Screenshots
I removed the input hotkey, but I can add it back.
-
OSBot 2.4.146 - Input + Screenshots
By popular request I added two highly requested features: 1. Human input is now controlled by a ready-to-access button, instead of going to Settings->Toggle Human Input. Now it's a three input button. When you start a script, by default you can't use your mouse but keyboard is enabled. A second click will disable both, a third click enables all; cycling back. For Scripters: isHumanInputEnabled() returns true if both mouse and keyboard are available. 2. Screenshots through Settings->Take Screenshot (and through the Utilities method) now takes a screenshot with painters (aka script paints).
-
Surely jagex can detect the usage of 3rd party software?
There's no statistics on any of this, any results from "ban experiences" weren't professional and weren't done in a controlled environment. Babysitting doesn't do anything besides potentially preventing reports or script glitches. Just because you weren't banned, doesn't mean you weren't detected. We can only make assumptions on server-sided detection while using technical skills to analyze client-sided detection. Any discussion on server-sided detection should not be taken literally, unless of course you know someone specifically on the anticheat team from the company.
-
Getting client username?
You tried numerous things, except for what the result of client.getUsername() is.
-
get the current object we are interacting with?
https://osbot.org/api/org/osbot/rs07/api/model/Character.html getInteracting()
-
How did you put Goldfarming on your CV/Resume?
Really depends on the company you work for. If you're applying as a full stack developer at a medium or small sized company, you might get away with "AI programming". Try that with Microsoft or IBM, your interviewer will probably talk about that "AI" in-depth and call out your bluff.
-
How did you put Goldfarming on your CV/Resume?
Talk about machine learning, advanced AI theory, and neural networks. The more about a subject you know nothing about, the better. Also say you were an employee (Software Developer) at OSBot. (these are all things you shouldn't do because that would be lying - we've seen these things before and its maximum cringe).
-
grandom() deprecated?
I deprecated it because it doesn't create a normal distribution, it only creates the positive half of the bell curve. My official solution was/is the following: public static int gRandom(int mean, double stdDeviation) throws IllegalArgumentException { if (mean < 0) throw new IllegalArgumentException("Mean can't be lower than 0!"); double max = stdDeviation * 3; int result; do { result = Math.toIntExact(Math.round(random.nextGaussian() * stdDeviation + mean)); } while (Math.abs(result - mean) > max); return result; }
-
[HELP NEEDED] Interacting with dialogues & and sending keystrokes through osbot(ex. 1, 2 ,3 etc)
Dialogue API does this for you; I mean you could re-write your own Dialogue API, not sure what that would achieve though.
-
Any scripters know how to make an external ESP for fps games?
hahahahaha I fucking doubt it, also there is a very large difference between C and C#
-
Any scripters know how to make an external ESP for fps games?
your osbot account may be missing soon
-
Any scripters know how to make an external ESP for fps games?
I copy paste open source csgo python scripts from mpgh with broken offsets.
-
Any scripters know how to make an external ESP for fps games?
I have a scripter 3 tag, does that count
-
At what point is gold farming profitable?
54k players online, if 50% are bots, then there are 27k bots online. If there were 135 gold farmers running 200 bots each, then there would be nobody else botting besides them. Since we know there are more than 135 individual people botting at any given time, this is not possible. This means the likelihood of you having a 200 bot farm is very, very unlikely. So the answer is no, botting is not feasible at $3k/month. If more than 1 person on this thread claims to make over $3k/month from botting alone, one of them is lying.
-
considering professional help
It sounds like an issue within your control, and you have a support network of friends and family. Unless you are being abused (if you are then get help), then try and find some hobbies that challenge you. Programming, carpentry, gardening, art, cars, etc. Being occupied will give you a sense of purpose, which is important for people that are still developing. If you tried or are still having issues after that, then I'd seek some professional help.