Everything posted by Token
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
dw I will find a @Solution
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
Indeed. I really liked the part where that dude jumped off a bridge.
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
Agreed. KFC is a lot better
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
What server
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
I miss you too
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
Ah cmon the vid is damn funny
-
When there's a long queue at McDonalds, and you can't be bothered waiting 20 mins
Just yell Allahu Akbar, and people will flee in terror
-
whos has some badluck lately
someone left 20 cookies in my fridge they disappeared in a few hours im on a strict diet
-
Reducing osbots mem usage
They may be running slowly but without any background processes maybe. The use of -mem 1024 only applies if your default memory allocation is too low so that's why I asked you what was the default one. This won't change anything if that's not the case.
-
Stealth Quester
Nah don't worry, I got some accounts being botted right now Authed
-
Stealth Quester
Added some bug fixes for the recent bugs reported on -Gertrude's cat -Demon Slayer -Animal Magnetism Training up some accounts for Shadow of the Storm in a bit
-
Reducing osbots mem usage
The -allow lowcpu flag is provided at CLI level because it's probably the most common setting we use while botting and the whole point of using CLI is starting a lot faster (support for goldfarming). It has the same effect as the lowcpu checkbox in your settings but access to it is provided from outside the client. -allow lowresource will disable things like debuggers, script and client paint, the window theme which you cannot modify after the client has been started so this is only possible from CLI. @@Globbee If a script is not working in lowresource mode, that has nothing to do with the client or lowresource mode as the only way it can affect scripts is by disabling the paint thread so the onPaint() method is no longer called. If scripters write their script code or their script depends in any way on the paint thread that is just blatantly wrong and you should inform them.
-
Reducing osbots mem usage
What was the previous memory allocation?
-
Stealth Quester
Does it stand at the entrance?
-
Reducing osbots mem usage
You are most likely running out of memory. You can troubleshoot this by opening a command prompt and starting OSBot with the following command java -jar client.jar -login osbotusername:osbotpassword -mem d It will print an error and the default memory allocation in my case 3616MB Memory allocation not a valid number, using default Setting memory at 3616MB If your default memory allocation is not 4 digit then this is your problem and you can fix it by starting OSBot from command line with the flag -mem 1024 That prevents becoming unresponsive, in order to actually reduce the memory usage your only solution would be using scripts that don't require webwalking at all
-
Purchased Script no activated
Send @Maldesto a PM and he will look into it
-
Purchased Script no activated
Then paypal has not yet processed your payment
-
Purchased Script no activated
Refresh the script selector
-
A constructive rant, Mirror mode & premium scripts
Welcome to OSBot If you want to test the client you can do so by starting it without a script running, there's not much to test about the client itself. Client is only relevant to scripters because most of the methods we call in our scripts come from the client, however the way a script communicates with the client classes should not affect you as an end user. However there are free scripts that are actually working such as my first script if you really don't care about ban rates as it's quite a high ban rate activity. I guess everyone has their own personal opinions on mirror mode - what we know for sure is it doesn't increase ban rates. Whether it actually decreases them and how much is hard to tell. You can see all scripts on the SDN page from where you can also check the script's thread for more info. If you feel the need for a larger supply of free mining and woodcutting scripts you are always welcome to publish your own on this site.
-
osbot cli
That means there is no file called osbot.jar at the current location. Here's a basic tutorial on using the windows command prompt xxx
-
Stealth Quester
I'm working on version 2.0 of the script which will allow associating a different gear preset to every quest and saving your own quick start options
-
Questions on botting
Not going to happen. Don't ruin your life by expecting to make money from botting because you won't make a penny. Get a bot running for at least 30 days then consider starting a gold farm otherwise it's quite pointless.
-
Stealth Quester
There is one additional step on Plague City quest stages which is kind of extra but the script automatically does it, reading the magic scroll you receive as reward to unlock ardougne teleport so you should do that if you did it manually. If you start the script on a F2P world or use DMM/Debug modes the script won't take teleports so it may not be able to get out of that dungeon because it usually uses a camelot teleport to escape.
-
Juggles AIO Fighter
The script freezes because the current onLoop iteration ends upon throwing an exception and it never reaches the return statement to tell it how long to sleep until next onLoop iteration, which results in executing code with no sleeps at all taking up to 100% CPU. Catching exceptions like that in onLoop will ensure that your script always sleeps between onLoop iterations and won't ever freeze when throwing exceptions. I use the guava library just to output the exception to OSBot's logger because e.printStackTrace won't send the stacktrace to the logger. You can also do something like this to output the stacktrace in the logger though which may be very similar to the implementation by google in guava public static String getStackTraceAsString(Exception e) { String st = ""; for (StackTraceElement el : e.getStackTrace()) { st += el.toString(); } return st; }
-
Stealth Quester
Did you enable the DMM/debug modes on the GUI? Did you hop from a F2P world?