Bytecodes Posted May 27, 2016 Posted May 27, 2016 Can I access the logs for my script externally from the client?
LoudPacks Posted May 27, 2016 Posted May 27, 2016 (edited) You can write your own logs to a txt file provided its located in the Data folder or a subfolder within the Data folder. Not sure if you can get the actual console output tho. Unless your making your own script you definitely cant do this. Edited May 27, 2016 by LoudPacks
Explv Posted May 27, 2016 Posted May 27, 2016 (edited) Can I access the logs for my script externally from the client? What you can do is run OSBot in debug mode from the command line, and redirect all output to a file. Open up CMD / terminal and type: java -jar "C:\Users\Username\Downloads\OSBot 2.4.59.jar" -debug >> test.txt With the correct file path to your OSBot.jar This will output all log statements to the file test.txt Edited May 27, 2016 by Explv 3
Botre Posted May 27, 2016 Posted May 27, 2016 Turn dat info into a tuto and I'ma put some respek on yo name 1
Bytecodes Posted May 27, 2016 Author Posted May 27, 2016 What you can do is run OSBot in debug mode from the command line, and redirect all output to a file. Open up CMD / terminal and type: java -jar "C:\Users\Username\Downloads\OSBot 2.4.59.jar" -debug >> test.txt With the correct file path to your OSBot.jar This will output all log statements to the file test.txt Cheers lad, basically what I wanted :-)