Skip to content

Instantly share code, notes, and snippets.

@phl0w
Created June 24, 2012 17:52
Show Gist options
  • Select an option

  • Save phl0w/2984161 to your computer and use it in GitHub Desktop.

Select an option

Save phl0w/2984161 to your computer and use it in GitHub Desktop.
import org.powerbot.concurrent.LoopTask;
import org.powerbot.game.api.ActiveScript;
import org.powerbot.game.api.Manifest;
@Manifest(authors = { "" }, name = "")
public class Looper extends ActiveScript {
@Override
protected void setup() {
submit(new Loop());
}
private class Loop extends LoopTask {
@Override
public int loop() {
// TODO: add looping..
return 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment