Skip to content

Instantly share code, notes, and snippets.

@ChrisBPB
Created April 6, 2020 08:31
Show Gist options
  • Save ChrisBPB/51dee268f7e7ae10b6174fa2f1270f46 to your computer and use it in GitHub Desktop.
Save ChrisBPB/51dee268f7e7ae10b6174fa2f1270f46 to your computer and use it in GitHub Desktop.
Task class for our tutorial
package tutorial;
import org.powerbot.script.rt4.ClientAccessor;
import org.powerbot.script.rt4.ClientContext;
public abstract class Task extends ClientAccessor {
public Task(ClientContext ctx) {
super(ctx);
}
public abstract boolean activate();
public abstract void execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment