Jump to content

Chris

Scripter II
  • Posts

    8365
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Chris

  1. hmm okay ill work with this and thanks for the fast response
  2. I want it to withdraw food from this array public static String[] food = { "Shrimp","Trout","Salmon","Tuna","Lobster","Swordfish","Monkfish","Shark" }; im calling it this way and (may not be the best way but is an example) if (s.bank.isOpen()){ //do banking if (!s.inventory.contains(food)){ if (s.getBank().contains(food)){ s.bank.withdrawAll(food); } } } and i get this error i tried fixing it with intelj but this does not work
  3. ProjectPooki add him ;) good guy and willing to test out the bugs!
  4. you got 32bit jdk?
  5. www.ovh.com for VPS linux start package 1 core 1gb 2.99
  6. INFERNO
  7. 1m
  8. ahh okay thanks anyway
  9. Can we work for your deposit?
  10. https://gyazo.com/e706b84a34abf185ac4e44f85f0376f2
  11. Chris

    Pet jad

    1/256 for cape echange
  12. http://rainierland.com/
  13. When you turn 3m into 156m in a night and sell for computer parts -> www.instantcena.com
  14. I CANT HANDLE CHANGE
  15. u prob have a shit mcdonalds
  16. BEFORE YOU BUY ANYTHING: make sure you plan out your build. Use: www.pcpartpicker.com any i5 will do you good. Do not get the K models if you are not overclocking. Part sellers: Amazon, Newegg, or any similar retailers available to you. look into the AMD 390's for GPU or any respectable NVidia card such as the 970 and below for your needs. If you need help building when the time comes I will be available My Skype: osbotsinatra1
  17. Thanks ;)
  18. like ->: getEquipment().interact(EquipmentSlot.RING, "Castle Wars");
  19. ended up interacting with widgets lol. RS2Widget equipmentTab = s.widgets.get(548,47); RS2Widget teleRing = s.widgets.get(387,15); if (equipmentTab != null && equipmentTab.isVisible()){ equipmentTab.interact("Worn Equipment"); s.sleep(s.random(4000)); } if (teleRing != null && teleRing.isVisible()){ teleRing.interact("Castle Wars"); s.sleep(s.random(4000)); }
  20. s.getEquipment().equip(slot #,"Combat bracelet"); How would I interact with the bracelet (tele to monastery etc.)? EDIT: found this in api interactpublic boolean interact(int slot, java.lang.String... actions) Interacts with the slot specified. Overrides: interact in class ItemContainer Parameters: slot - The slot to interact with. actions - The action to interact with. Returns: True if the bot interacted with the specified slot successfully. how would this be used correctly? ​
×
×
  • Create New...