brandon1000

The skeleton i use(powerbot script)

Jul 14th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. import org.powerbot.concurrent.strategy.Strategy;
  2. import org.powerbot.game.api.ActiveScript;
  3. import org.powerbot.game.api.Manifest;
  4. import org.powerbot.concurrent.Task;
  5. import org.powerbot.concurrent.strategy.Condition;
  6.  
  7. @Manifest(authors = { "who wrote it" }, name = "script name", description = "what it dose", version = 00.00)
  8. public class skeleton extends ActiveScript{
  9. //variables here
  10.  
  11. public void setup(){
  12. provide(new Strategy(new classname(), new classname()));
  13. }
  14.  
  15. public class classname implements Task, Condition{
  16. public void run(){
  17.  
  18. }
  19.  
  20. public boolean validate(){
  21. return true;
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment