Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. package Omega.construction.thingstobuild;
  2. import Omega.construction.ids.ids;
  3. import com.rsbuddy.script.methods.Inventory;
  4. import com.rsbuddy.script.wrappers.Widget;
  5.  
  6. import omeg.Rubiyath.Utilities.my;
  7. import Omega.construction.Utils.Strat.strategy;
  8.  
  9. public class crudewoodenchair implements strategy {
  10. @SuppressWarnings("deprecation")
  11. public boolean isValid() {
  12. return Inventory.containsOneOf(ids.PLANKIDS()) && Inventory.containsOneOf(ids.NAILIDS()) && Inventory.containsOneOf(ids.HAMMERIDS()) && Inventory.contains(ids.SAWID());
  13.  
  14. }
  15.  
  16.  
  17.  
  18.  
  19. public void execute() {
  20.  
  21.  
  22. }
  23.  
  24. public String getStatus() {
  25. return "We are Building Crude Wooden Chair";
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement