Everything posted by Alek
-
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.
-
What script they are using ?
Classic example of how new scripters that concentrate more on antiban instead of learning how to write good code.
-
Open source F2P quester
Optional<RS2Object> optional = getObjects().getAll().stream().filter(n -> n.getName().equals("Coffin")).findFirst(); if(optional.isPresent()) { //do things } This is the more "proper" way, however your solution would work. The only static ids which are normally accepted is item ids and config ids. Although config ids have changed in the past they are considered very stable. Definitely replace entity ids with other identifiers, the entity hover debug tool should give you some ideas. As for using configs for checking if a quest is complete or not, that's definitely fine because you know the exact values for your individual quests. You said specifically you are new to Java coding, are you familiar with other languages?
-
Open source F2P quester
It sounds like you're implying that using text color means that it's buggy. Also part a and b are not completely valid arguments, the Quest API caches one time for initial values - then it's stored in memory (and called just as fast thereafter). The benefit to the way I set it up is that you don't need the configs and their values for hundred(s?) of quests, which would actually make the API a lot more prone to breaking than the color check. Just some things I noticed: The code in red is duplicate code, some of which is pretty expensive. Also: I'm very certain this script will break in 2 days because you're using a ton of static ids. Also your streams should really be optionals, using the orElse(null) kind of defeats the purpose. It's not bad but with some minor changes you can make a really big improvement.