Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import org.powerbot.concurrent.strategy.Strategy;
- import org.powerbot.game.api.ActiveScript;
- import org.powerbot.game.api.Manifest;
- import org.powerbot.concurrent.Task;
- import org.powerbot.concurrent.strategy.Condition;
- @Manifest(authors = { "who wrote it" }, name = "script name", description = "what it dose", version = 00.00)
- public class skeleton extends ActiveScript{
- //variables here
- public void setup(){
- provide(new Strategy(new classname(), new classname()));
- }
- public class classname implements Task, Condition{
- public void run(){
- }
- public boolean validate(){
- return true;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment