December 11, 20169 yr As the title states, was just wondering if it's possible (and if so, how would I go about it?) to either completely disable the auto login random solver, or wait until a boolean is true to go on a break. Thanks
December 11, 20169 yr Dissabling it is easy, you'll just need to launch the OSBot client from CLI with a -allow norandoms parameter. Example: java -jar "PATH_TO_OSBOT\osbot 2.4.101.jar" -login OSBOT_LOGIN:OSBOT_PASS -bot BOT_USERNAME:BOT_PASSWORD:BANK_PIN(0000 if none) -debug 5012 -allow norandoms -script SCRIPT_NAME_OR_ID:null (script parameters are null) Check this out http://i.imgur.com/8ZCZeq4.png
December 11, 20169 yr Author I was under the assumption the norandoms was for dismissal of randoms? Maybe I'm just misunderstanding though?
December 11, 20169 yr I was under the assumption the norandoms was for dismissal of randoms? Maybe I'm just misunderstanding though? :xfeels:
December 11, 20169 yr I was under the assumption the norandoms was for dismissal of randoms? Maybe I'm just misunderstanding though? -norandoms disables Osbots login handler/ALL random events then you'd have your own Login Event like this http://osbot.org/forum/topic/109560-a-simple-login-handler/ & then maybe something like if(!getClient().isLoggedIn){ execute(LoginEvent); or logging in lol this dismisses all random NPCs without the -norandoms in CLI Edited December 11, 20169 yr by Bamboozled
December 11, 20169 yr -norandoms disables Osbots login handler then you'd have your own Login Event like this http://osbot.org/forum/topic/109560-a-simple-login-handler/ & then maybe something like if(!getClient.isLoggedIn){ execute(LoginEvent); or logging in lol this dismisses all randoms I had the assumption that -allow norandoms dismisses ALL random solvers. The includes logging in, RS pesky random dismissal etc. and I do believe that even breaks (correct me if I'm wrong). I seriously doubt that if you use -allow norandoms and check "Dismiss all randoms" in OSBot settings, that the client with dismiss RS randoms Edited December 11, 20169 yr by nosepicker
December 11, 20169 yr Author -norandoms disables Osbots login handler/ALL random events then you'd have your own Login Event like this http://osbot.org/forum/topic/109560-a-simple-login-handler/ & then maybe something like if(!getClient().isLoggedIn){ execute(LoginEvent); or logging in lol this dismisses all random NPCs without the -norandoms in CLI yeah, I thought the -norandoms had the same effect as that checkbox, again, thankyou all to clearing this up
June 7, 20214 yr Sorry I'm still not clear what -allow noRandoms does -- what is a login random solver? And if I, like the OP, want to only allow the client to go on a break during certain periods (so it doesn't break in the middle of an important loop, for example) how would one do that? I'm making a merching script. Thank you!
Create an account or sign in to comment