Jump to content

Isolate

Lifetime Sponsor
  • Posts

    2136
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Isolate

  1. osbot isn't out to spoon feed. it has everything someone needs to make their own customized interactions and API but nobody does.
  2. It's the same thing as mirror, only difference would be standard of scripts
  3. Personally I store all booted credentials and if a client with those details doesn't post back to the server within X time It's killed via pid by CLI username Windows I use WMIC path win32_process get Caption,Processid,Commandline to output CLI/PID/ECT, just loop through each line of the proccess output until line contains details then after removing all double spaces down to 1 space gaps only String pid = s.split(" ")[s.split(" ").length - 1]; String cli = s.substring(s.indexOf("java -jar")).replace(pid, ""); now we got those we can Taskkill /PID "+ pid+ " /F" For linux I have something similar but ps -fea|grep -i *CLI USERNAME* than same as above, make all multiple spaces 1 space gaps String pid = s.split(" ")[1]; //Note CLI output will depend on if you're running debug mode or not, if you are it'll be the exact args else it'll be the clients main args which are a little more annoying to rip if (s.contains("java -jar")) { cli = s.substring(s.indexOf("java -jar")); }else if(!s.contains("java -jar")) { cli = s.substring((s.indexOf("BotApplication") + ("BotApplication").length())); } and for the killarino "kill -9 "+pid;
  4. "I ain't gay but $20 is $20" Bless this voice
  5. What's link. I'm that idiot that likes to look at things even though he knows they're bad.
  6. Area small = entity.getArea(2); Area big = entity.getArea(3); List<Position> positions = big.getPositions(); if(positions.removeAll(small.getPositions())) { Position position = positions.get(new Random().nextInt((positions.size() - 1))); if (position != null) { WalkingEvent event = new WalkingEvent(position); event.setMiniMapDistanceThreshold(0); event.setMinDistanceThreshold(0); event.setBreakCondition(new Condition() { @Override public boolean evaluate() { return entity.getPosition().distance(myPosition()) >= 3; } }); execute(event); } } ? I think... ? I have a hunch I over complicated it
  7. Yay we're in spam, having a good time as always
  8. They'd be collecting dust, I can clean them up and host them on the sdn if it'd be easier for people
  9. You are exporting with the OSBot jar inside your script Other than that clean enough, goodluck with your project
  10. 0 > 100 real quick up in here. But yea people should feel free to use neutral feedback more often, it's peoples choice not to.
  11. nvm seems to work suddenly through CLI... spooky...
  12. I'm not sure whether it's a case of a pool of all the types on one side vs a proxy that can actually support all protocols, and having them all in one address is useful for me
  13. Just asking if the client has support for proxies that support all the protocols through one address. They can be used for things like this if the support is in place (like 10-15 lines of code) was just curious if it's a thing that is in place for like ease of life
  14. Does the client support proxies that support multiple protocols (HTTP/HTTPS/SOCKS4/5) themselves or must it be strictly SOCKS4/5 I was doing socket work for stuff and found if I wanted to use the SOCKS feature when using a socket on proxies with multiple protocol support like this I Needed to reflect and tell it I wanted v4 (If I didn't i'd get SocketException: Malformed reply from SOCKS server) and I was wondering if the client has this support for it's runescape stuff or not.
  15. I came here to say what I said ;-; that I find methods which do not use mouse "movements"/paths to be better if done right. Also just gonna point out I would say this client camera.toEntity() would cause some issues was just testing stuff with it and it always orientates the object the same relative to your player instead of moving it so the object is randomly on your screen
  16. Didn't realize I was dealing with a presumption fuckhead. I know you can't do it in the same tick, I also know the games tick rate, so if you account for that... guess what you can fucking do mate, you can move it instantly, and wait for it, wait for it bro, in the next tick... you can click, oath that was a hard conclusion. So. Since this method DOES NOT MOVE THE MOUSE ALONG A PATH you can take all the bullshit YOU'RE spouting, and stick it up your ass
  17. I have accounts that have no mouse movements only clicks... and I dispute this... I personally think they work better than using the mouse... also it does register events correctly if you're like, not autistic
×
×
  • Create New...