June 2, 201312 yr whats some stuff i can do on my computer to make os bot perform better so i can run more bots? also i am running windows 8
June 2, 201312 yr Use a JDK, use the -server option, optimize your garbage collection settings, etc. Make a batch file like this... @echo off java -server -jar osbot-x.x.x.jar pause I'ed explain how to optimize your garbage collection settings but it's a very complicated matter and Java's default settings are good enough anyways.
June 2, 201312 yr Use a JDK, use the -server option, optimize your garbage collection settings, etc. Make a batch file like this... @echo off java -server -jar osbot-x.x.x.jar pause I'ed explain how to optimize your garbage collection settings but it's a very complicated matter and Java's default settings are good enough anyways. How can we do this in Ubuntu?
June 3, 201312 yr Author Use a JDK, use the -server option, optimize your garbage collection settings, etc. Make a batch file like this... @echo off java -server -jar osbot-x.x.x.jar pause I'ed explain how to optimize your garbage collection settings but it's a very complicated matter and Java's default settings are good enough anyways. could you go into a little bit more detail about this? idont really understand