Your browser does not support HTML5 canvas. Fork me on GitHub

Available Packages:

Execute

Source

function execute(ForForceCallback c)

Source

This function starts a new 'thread' inside the callback closure, where the op limit is at zero, allowing us to bypass it. This is extremely useful when you have expensive computations which would otherwise crash the thread. If the callback crashes due to an error or hitting the OP limit, it will error out as well. Note: Unlike timers and doAfter(), this method is synchronous, meaning that it will wait for the called method to finish before continuing the in the current thread. Note: We use ForForce because it does not require a Trigger to be called, only an empty force which is reusable, unlike TriggerEvaluate. Note: You may use this inside a local clause, like this: if localPlayer == caller execute(...) But be warned that this will cause a desync, unless you are calling this from within another execute(...) clause. This will desync: // code called by a trigger if localPlayer == caller execute() This will not desync: execute() -> // do some stuff here if localPlayer == caller execute(...)

function executeWhile(int resetCount, LimitedExecuteCondition condition, LimitedExecuteAction action)

Source

This is a utility function which you can use to process arbitrarily large loops. It functions like a while loop that will run action.run() while condition.check() == true, however it will reset the OP limit each time after the specified amount of resetCount.

function try(ForForceCallback c) returns boolean

Source

This function works exactly the same as execute(), with the only difference that it will allow you to inspect an error if one occured. If an error occured, the return value will be false. If the error is caused by error(), then you can inspect the error message using lastError from ErrorHandling. If the error is caused by another form of thread crash, such as zero division or OP limit, lastError will be empty. The error will also be suppressed from being printed.

interface ForForceCallback

Source

This package exposes a single function execute(), the primary use of which is to reset the OP limit.

function run()

Source