Advertisement
Guest User

Untitled

a guest
Dec 1st, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package scripts.paa0.paa1Scripts;
  2.  
  3. import org.tribot.script.Script;
  4. import org.tribot.script.ScriptManifest;
  5. import scripts.paa1.paa1Instructs.*;
  6. import scripts.paa1.paa1InstructsReq.Instruct;
  7.  
  8.  
  9. @ScriptManifest(authors = { "Me" }, category = "etc", name = "Test")
  10. public class test extends Script{
  11.  
  12.     @Override
  13.     public void run() {
  14.         Instruct instruct = new TestInstruct(this);    
  15.         instruct.update();     
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement