Is it possible to move the camera while my script is running to bank?
if (getBank().open()){
getCamera().movePitch(22);
getCamera().moveYaw(303);
}
currently it runs to the bank and then turns the camera. How can i make it run to the bank and while running turn?
2nd question, i want to log my profits in a file onExit()
how can i log to a .txt file and make the name of the file dynamic using the accounts name?
thx in advance for any help.