Advertisement
Guest User

Untitled

a guest
Dec 1st, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.83 KB | None | 0 0
  1. package scripts.paa1.paa1Instructs;
  2.  
  3. import org.tribot.script.Script;
  4.  
  5. import scripts.paa0.paa2ScriptReq.OverScript;
  6. import scripts.paa1.paa1InstructsReq.Instruct;
  7. import scripts.pzz8.paa1Utility.Utility;
  8. import scripts.pzz8.paa2Utilities.InvSlot;
  9. import scripts.pzz8.paa2Utilities.rsInv.horz;
  10. import scripts.pzz8.paa2Utilities.rsInv.vert;
  11.  
  12. public class TestInstruct extends Instruct{
  13.    
  14.     public TestInstruct(Script script) {
  15.         super(script);     
  16.     }  
  17.     boolean done = false;
  18.  
  19.     @Override
  20.     public void whileWalking(Utility utility) {
  21.        
  22.        
  23.     }
  24.  
  25.  
  26.     @Override
  27.     public void whileBanking(Utility utility) {
  28.        
  29.        
  30.     }
  31.  
  32.  
  33.     @Override
  34.     public void whilePlaying(Utility utility) {
  35.         InvSlot slot = utility.getInv().getFirstEmpty(vert.TOP, horz.RIGHT);
  36.         if(slot != null){
  37.         OverScript.out(slot.toString()+":");
  38.         }
  39.        
  40.     }
  41.  
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement