Royal Posted July 1, 2016 Posted July 1, 2016 Break Handler so im using a Script at a aggressive mob to train combat and when i try using the break handler it tries to logout but wont logout since its in combat and just has mouse over logout button any ideas?
Bitshift Posted July 1, 2016 Posted July 1, 2016 A game message is sent when attempting to log out whilst in combat, right? Go from there. In the loop method: BreakManager is checked, and there is a boolean shouldActivate(). You might be able to do something with that.
Token Posted July 1, 2016 Posted July 1, 2016 A game message is sent when attempting to log out whilst in combat, right? Go from there. In the loop method: BreakManager is checked, and there is a boolean shouldActivate(). You might be able to do something with that. I'm pretty sure he's not a scripter, hence he's posting in the General Help section. But even if you were to implement that in a script, BreakManager is a RandomSolver which means it's executed by the RandomExecutor which stops the script threads (threads used by the EventExecutor probably) so whatever you do in onLoop will not execute after the BreakManager kicked in. What you can do though, is get the time until the next break and act accordingly in your script code. As a user you can ask the scripter to implement support for taking breaks if their script is performing activities which involve combat. This, however may be a bit more difficult to implement and not many scripters will be willing to do it. It is not a problem on OSBot's end as the client cannot figure itself how to leave combat in any situation without damaging the script context, therefore it should be handled in script code.
Bitshift Posted July 1, 2016 Posted July 1, 2016 I'm pretty sure he's not a scripter, hence he's posting in the General Help section. But even if you were to implement that in a script, BreakManager is a RandomSolver which means it's executed by the RandomExecutor which stops the script threads (threads used by the EventExecutor probably) so whatever you do in onLoop will not execute after the BreakManager kicked in. What you can do though, is get the time until the next break and act accordingly in your script code. As a user you can ask the scripter to implement support for taking breaks if their script is performing activities which involve combat. This, however may be a bit more difficult to implement and not many scripters will be willing to do it. It is not a problem on OSBot's end as the client cannot figure itself how to leave combat in any situation without damaging the script context, therefore it should be handled in script code. My apologies, didn't even realize what section this was. If that's the case, a "fix" to this, as you have mentioned, is only applied if the scripter supports it. This section, then, would be useless to the nature of this question.
Royal Posted July 2, 2016 Author Posted July 2, 2016 Haha All Good I do breaks manually now I have them inplemented in my Private Scripts but I use some public ones and they fk me over lol thx anyway