Everything posted by Zummy
-
Find Memory Leak
Hey guys, I'm having trouble with finding the source of my memory leak. My clients start at 700mb but slowly climb to 2gb+. First I thought it was the known sound bug but sound is disabled in-game, I also changed all webwalking to pathwalking but still the problem persists. Is there a proper way to analyse my script and see where the issue is coming from?
-
WebWalking
Do you mean just using walkPath with a List of Positions?
-
WebWalking
I've been running some bots overnight but after all this time my RAM usage per client has increased drastically, some use over 2GB of RAM. Now I've heard people say this is because of webwalking, is this true? Should I over a different method for walking?
-
Account Locks.... Jagex back at it again lol.
Why would you hold that much on a single mule? ?
-
Locks on rested (90+ days) tut accounts?
Isn't that a waste of proxies since IP gets flagged after a ban, rendering the proxy unusable?
-
Khal Tutorial Island
I would like to report a bug: at the financial advisor I have had an account get stuck in an infinite loop where he keeps talking to the guy before the continue dialogue is done. Should probably have the talk-to only trigger when not in dialogue.
-
Custom Login Handler
Wasn't thinking about that one, thanks! Also should use getLoginUIState instead of getLoginStageValue.
-
Custom Login Handler
Hello, I'm trying to detect whether my character is logout out during script runtime: public void logoutCheck(){ if (getClient().getLoginStageValue() == 0){ log("I'm logged out!"); loginEvent = new LoginEvent(this.login, this.password); getBot().addLoginListener(loginEvent); execute(loginEvent); } } I added the method in the onLoop but never gets triggered, am I retarded? Thanks.
-
A Simple Login Handler
How can I call the login handler again when i get returned to the login screen for some reason?
-
Most reliable 7QP script?
I'm looking for the most reliable 7QP script that has a 100% completion rate and doesn't get you insta-banned, don't care if it's 20 bucks.
-
What's ur daily gp goal?
Is it so much less now because the market was different back then or do you invest less time in it now?
-
Excluding an Object from interaction.
Cool, thanks again!
-
Excluding an Object from interaction.
Thank you again! I really appreciate all the help, that map tool is absolutely great! I do get a warning tho on my getObjects().closest() code -> Unchecked generics array creation for varargs parameter.
-
Excluding an Object from interaction.
Nevermind, I found the flaw. Apparently gridX can change?
-
Excluding an Object from interaction.
I want to mine only a certain set of rocks but I can't seem to exclude others, this is my pseudo code: RS2Object rock1 = getObjects().closest(7454); if (rock1.getGridX() != 10176){ // mine rock } Is there a proper way instead of looking at the object's grid coordinates? Thanks
-
Suicide VPN/Proxy
No ,I'm just planning ahead. Yeah that's what I'm afraid of, although I will have enough accounts ready to take their place I'm just wondering if all 90 will be send to oblivion with a snap of their fingers.
-
Suicide VPN/Proxy
Should I care about having 90 accounts running the same IP if I'm suiciding or should I get a VPN with auto ip changer or invest in proxies?
-
AIO Farming
Can presets be made and saved so it can be started from cli?
-
Checking if an account is banned
Is this method of ban checking still effective considering captcha's and requiring you to have a registered email?
-
Linux vs Windows
Hello, I'm planning for a project and i'm trying to narrow down on a hardware setup. Currently I'm looking at this: 2x Intel Xeon E5-2620v4 2.10GHz 64GB DDR4 RAM CentOS 7 or Windows How many clients could I run with this with nointerface etc. enabled, where could I improve to squeeze more performance out of my buck? Thanks
- Stealth Quester
-
Closing specific osbot client
OMG you even added linux support! You saved me so much time, thank you so much! ❤️
-
Khal Tutorial Island
I've been looking into that method for a few days now and I tried several different ways but I can't seem to make it happen, could you PM me it would be greatly appreciated ?
-
Closing specific osbot client
I'm not saying that I am running more than 1 client, I'm planning to. I will buy VIP ofcourse but right now I'm in the process of setting things up.
-
Closing specific osbot client
Hello, I'm trying to find a way to kill a specific osbot client. This is what i'm after: say I have 10 osbots clients open but I want to kill the client that has account X running, how could I achieve this? I tried: Finding a way to rename the java.exe process with a java argument in a .bat file. Finding a way to rename the window tile of the client, doesn't look like it's possible alway OSBot 2.5.8 Using a custom login handler and using System.exit, this only works with local scripts and I need to find a solution that also works with SDN scripts. Killing the process with PKILL in cmd based on it's PID but can't find the connection to link specific clients with it's PID number (which client has PID X running account X). Thanks for reading, any help is appreciated ?.