Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. He never told us if it was a npc or a player
  2. I think I should get one :P
  3. i told him to debug your the script. it will help you so much
  4. naw dont say that world hopping here is slow.
  5. Swiz I was talking to my friend about doing this. We're down, but we're new to this we don't have as much money as you. We have some hundreds we can use. But as of right now we'd rather just join and learn first before actually downing down money. Plus that gives us time to make more money. Striaght up we want to learn first before actually going about doing it. If you want to throw at me some tuts or thing we can read that helped you understand and stuff. Feel free to pass it over here
  6. I highly suggest you use the lite version of my script it has the same name and everything but it's actually free
  7. http://osbot.org/forum/topic/57431-explaining-break-settings/ i found you a link
  8. want a trial? sorry i took so long to notices
  9. is it your own local script? if it is it needs a manifest so it can show up is it your own local script? if it is it needs a manifest so it can show up
  10. Joseph

    too hard

    im looking for uncut gems. ill trade you 2 cuts / uncut
  11. Joseph

    too hard

    i work too hard for your guys _-_ http://prntscr.com/5on2q5 http://prntscr.com/5on363 and im still working on my crafter i wont stop until its done.
  12. Let me be the first to say I don't smoke cigs but the alternative herbs. Is that any better?
  13. http://osbot.org/forum/topic/56928-herbifier/page-2
  14. alek add in canifis bank and port ph to banks. if you need account that can reach those location let me know
  15. Joseph

    Banking Util

    My task interface is a simple node interface everybody uses. Contains three methods: String: status() int: run() boolean: activate(); you could remove dsAPI its my own api but i did release some of the methods some where in this section il give you links. containsAll This is an abstract class which is meant to be extended. You can override activate if it doesnt suit your needs. package util; import java.util.ArrayList; import java.util.List; import org.osbot.rs07.api.util.Utilities; import org.osbot.rs07.script.Script; import osb.setting.Task; import osb.util.DsAPI; import osb.web.WebBank; public abstract class DsBanking implements Task { public List<String> requirements = new ArrayList<String>(); public final Script ctx; private final DsAPI dsAPI; private WebBank webBank; public DsBanking(Script ctx, DsAPI dsAPI) { this.ctx = ctx; this.dsAPI = dsAPI; this.webBank = dsAPI.getWebBank(); } public abstract String status(); public abstract void run() throws InterruptedException; @Override public boolean activate() throws InterruptedException { return this.webBank.insideBank() && !dsAPI.containsAll(true, getList()); } public void clearList() { requirements.clear(); } public void setupList(String...items) { for (String item: items) { requirements.add(item); } } public String[] getList() { return Utilities.convertStrings(requirements); } public boolean openBank() { return webBank.openBank(); } public boolean depositAll() { if (ctx.inventory.contains(getList())) return ctx.bank.depositAllExcept(getList()); else return ctx.bank.depositAll(); } public void withdraw(String name, int amount) throws InterruptedException { if (dsAPI.containsAll(false, name)) { boolean all = (amount == -2) ? true: false; boolean allButOne = (amount == -1) ? true: false; if (all) ctx.bank.withdrawAll(name); else if (allButOne) ctx.bank.withdrawAllButOne(name); else ctx.bank.withdraw(name, amount); dsAPI.conSleep(dsAPI.containsAll(true, name), 7000).sleep(); }else{ ctx.log("doesnt have " +name); ctx.bot.getScriptExecutor().stop(); } } }
  16. Good shit I do the same thing when shit like that happens to me
  17. keep working on it and fix the problem
  18. it doesnt work all the times but more of the time its does the boolean is the real distance.
  19. did nobody notice this? http://prntscr.com/5n3tai
×
×
  • Create New...