feat(Antiban): Add MsUntilBreak, and MsUntilSleep AntiBan helpers #153
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem:
TimeUntilBreakis awkward for programmatic use. It returns a formatted string, which is useful for logging but requires parsing to use in logic. To retrieve the MS until an antiban sleep or break you have to use something similar to the example code which is difficult to read, and mentioned nowhere in the docs.Suggestion:
Add two helper functions that return the raw milliseconds until the next scheduled break/sleep (if one exists):
MsUntilBreak(): DoubleMsUntilSleep(): DoubleExample Before:
Example After:
Use Case
A Scripter wants to clean up or perform specific actions before a break interrupts execution. This helper now allows the scripter to perform a simple MS comparison against the upcoming break/sleep.