TheGreatests Posted October 21, 2016 Share Posted October 21, 2016 Looked at the API briefly, and am still getting confused. What I am trying to do is Trying to store accounts, and then randomizing login into those accounts after a certain amounts of a resource is obtained(Ore, Essences.. ect) Here is what I found in the API but I do not know how to implement it into the script and make the method function correctly. Client.LoginStage.LOGGED_OUT, however I do not know how to implement this into my method so I can have it login and log out from a randomized account. I know loginStage gets where the clients protocols are at during operation, but how the hell do you logout, and then login with a listed array of stored accounts. well found out how to log out I believe.. logoutTab.logOut(); Quote Link to comment Share on other sites More sharing options...
Bucket1337 Posted October 21, 2016 Share Posted October 21, 2016 (edited) Do you want to make a slave trade a random master from a list? If the API does not support that you could just write a CLI script that starts a random account after x time and kill the osbot season after x time. Slave has all possible masters added, hops to the world where the master is and trades its items. Could look like something like this: Not sure how to randomise that. You would have to find out yourself. If you happen to use this methode tell me if it works out. java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@1.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@2.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@3.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 Edited October 21, 2016 by Slawa Quote Link to comment Share on other sites More sharing options...
TheGreatests Posted October 21, 2016 Author Share Posted October 21, 2016 Do you want to make a slave trade a random master from a list? If the API does not support that you could just write a CLI script that starts a random account after x time and kill the osbot season after x time. Slave has all possible masters added, hops to the world where the master is and trades its items. Could look like something like this: Not sure how to randomise that. You would have to find out yourself. If you happen to use this methode tell me if it works out. java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@1.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@2.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 java -jar "OSBot.jar" -proxy 123.132.123.123:1234 -login OSBOTUSER:OSBOTPASS -bot 07account@3.com:RSPASS:0000 -script SCRIPTID:0 TIMEOUT /T 3000 C:\>Taskkill /IM OSBot.jar /F TIMEOUT /T 6000 Oh I was hoping to have script log my current slave out, and then login from a stored list of arrays. This works though also huh? Is this all through command prompt using echos? Quote Link to comment Share on other sites More sharing options...
Bucket1337 Posted October 21, 2016 Share Posted October 21, 2016 Oh I was hoping to have script log my current slave out, and then login from a stored list of arrays. This works though also huh? Is this all through command prompt using echos? I'm not sure if this works. But I think it should work. :p Quote Link to comment Share on other sites More sharing options...
Explv Posted October 21, 2016 Share Posted October 21, 2016 Looked at the API briefly, and am still getting confused. What I am trying to do is Trying to store accounts, and then randomizing login into those accounts after a certain amounts of a resource is obtained(Ore, Essences.. ect) Here is what I found in the API but I do not know how to implement it into the script and make the method function correctly. Client.LoginStage.LOGGED_OUT, however I do not know how to implement this into my method so I can have it login and log out from a randomized account. I know loginStage gets where the clients protocols are at during operation, but how the hell do you logout, and then login with a listed array of stored accounts. well found out how to log out I believe.. logoutTab.logOut(); Well logging out is simple, you just do: getLogoutTab().logOut(); There is not, however, anything in the API for logging in. The main issue with logging back in is the automatic login event. If you start a script using a runescape account stored in the settings, whenever you logout, it will automatically try to log back into that same account. To prevent the automatic login event from triggering you can either: Login to the first account manually, then run the script, so that when you logout the login event won't be triggered (it doesn't have the account information to do it). Write your own method to disable the login event (this is a bit trickier) To log in to another account you can use: The Client class to determine when you are logged out The Client class to determine which stage of the login protocol you are at The Mouse class to click on the Existing users button The Keyboard class to enter the account details Hopefully you can figure it out from that 1 Quote Link to comment Share on other sites More sharing options...