Created
June 24, 2012 17:52
-
-
Save phl0w/2984161 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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