Hel Posted December 11, 2016 Share Posted December 11, 2016 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 Quote Link to comment Share on other sites More sharing options...
Butters Posted December 11, 2016 Share Posted December 11, 2016 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 1 Quote Link to comment Share on other sites More sharing options...
Hel Posted December 11, 2016 Author Share Posted December 11, 2016 I was under the assumption the norandoms was for dismissal of randoms? Maybe I'm just misunderstanding though? Quote Link to comment Share on other sites More sharing options...
Juggles Posted December 11, 2016 Share Posted December 11, 2016 I was under the assumption the norandoms was for dismissal of randoms? Maybe I'm just misunderstanding though? :xfeels: Quote Link to comment Share on other sites More sharing options...
Hel Posted December 11, 2016 Author Share Posted December 11, 2016 Thanks though :-) Quote Link to comment Share on other sites More sharing options...
Bamboozled Posted December 11, 2016 Share Posted December 11, 2016 (edited) 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, 2016 by Bamboozled Quote Link to comment Share on other sites More sharing options...
Butters Posted December 11, 2016 Share Posted December 11, 2016 (edited) -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, 2016 by nosepicker Quote Link to comment Share on other sites More sharing options...
Hel Posted December 11, 2016 Author Share Posted December 11, 2016 -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 Quote Link to comment Share on other sites More sharing options...
galois69 Posted June 7, 2021 Share Posted June 7, 2021 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! Quote Link to comment Share on other sites More sharing options...