Jump to content

Isolate

Lifetime Sponsor
  • Posts

    2136
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Isolate

  1. *checks email address activity* son of a b-
  2. If it's VIP related you should get a notification pop up. Could just be memory related. Heard whispers in the chat-box about opening multiple clients instead of tabs.
  3. If you're using getWalking() getLocalWalker() I think you're out of luck but if you're using the snippet, that I believe originates from @Khaleesi but posted by hero (can't tag you for some reason) (feel free to correct me there you two) You could do public void webWalkEvent(final INodeRouteFinder routeFinder, final Position position, final Area area, final MethodProvider script) { WebWalkEvent event = new WebWalkEvent(routeFinder, position); event.setBreakCondition(new Condition() { @Override public boolean evaluate() { return getDialogues().inDialogue(); } }); script.execute(event); } which'd break walking when in dialogue, so you can handle it and it'd continue
  4. Most things are documented pretty well in the API most base calls are pretty straight forward, Think as close as you can to english, but then allow for the fact it's a program Your example in the most basic form in the OSBot api would look like final int PIKE = 351; if(myPlayer().getCurrentHealth() < 5){ getInventory().getItem(PIKE).interact(); } so most things you'd ever need to access are pretty straight foward , eg. myPlayer() getInventory() getBank() getGroundItems() ect. storing stuff is pretty straight foward too Item itemExample = getInventory().getItem("Example name"); GroundItem groundItemExample = getGroundItems().closest("Example Name"); RS2Object objectExample = getObjects().closest("Example name"); ect it's pretty straight forward, if in doubt, search api
  5. This INodeRouteFinder.createAdvanced(); only ever do it once in a script. Like in your onStart
  6. Mr Nobody Hotarubi No Mori E Slumdog millionaire
  7. this was one of the most farmed methods when osrs came out. it's always had a lot of attention on it.
  8. got one-o these badboys up in that b****? @ScriptManifest(author = "Your Name", name = "Example-Name", version = 0.1, info = "This is an Example Manifest", logo = "")
  9. protip: they actually ban accounts when they're not doing 'bot busting' streams.
  10. @Override public void onPaint(Graphics2D g) { super.onPaint(g); }
  11. switch(state) seems legit (maybe I should provide more context) Maybe just a neaten up would help see what's going on here. package Private; import org.osbot.rs07.script.Script; /** * Created by Jordan on 14/03/2016. */ public class States extends Script { @Override public int onLoop() throws InterruptedException { switch (getState()){ case DROP: //drop break; case CHOP: //chop break; } return random(500, 900); } private State getState(){ if(!getInventory().isEmpty()) return State.DROP; else return State.CHOP; } private enum State{ DROP, CHOP } } what's the actual error/output you're getting
  12. Isolate

    TREAT YA SELF

    I love me some of that Venom Desgn. But srs it looks really nice :P
  13. out of what you have seen in the op which did you enjoy the most
  14. K Project Darker than black Black Butler to name a few.. edit edit: nvm goofed
  15. Thought this'd be a great place to get noticed. Can I please be informed if there has been any unusual IP activity on this account.
  16. Just showing off again You and your crazy goals
  17. Should throw a chance in for fun ^_^ Not worth spamming over though
  18. Isolate

    Jagex

    I think I read somewhere if it's a macroing ban they don't give a shit. Something about confidence in their system.
  19. I think he meant, since you clearly now where this obstacle is, You could do a can reach to the middle of the field. If you can, walk there. If you can't, walk towards the gate and open it.
  20. The heart attack before you realise we're in spam
  21. Have you considered trying the Bank API @Override public int onLoop() throws InterruptedException { if (Banks.LUMBRIDGE_UPPER.contains(myPlayer())) { if (!getBank().isOpen()) { if (getBank().open()) { new ConditionalSleep(5000, 6000) { @Override public boolean condition() throws InterruptedException { return getBank().isOpen(); } }.sleep(); } } } return random(500, 900); }
×
×
  • Create New...