Jump to content

Paradox68

Trade With Caution
  • Posts

    288
  • Joined

  • Last visited

  • Feedback

    100%

About Paradox68

Profile Information

  • Gender
    Male

Recent Profile Visitors

1629 profile views

Paradox68's Achievements

Black Poster

Black Poster (5/10)

62

Reputation

  1. Buying 5M osrs gp for $6 PayPal, I'll go first if you're trusted.
  2. Notifications on the forums aren't opening.... Yes i tried giving it time.... I had 3 notifications before and it cancels the alert bubble but still won't open.
  3. download java. https://java.com/en/
  4. Paradox68

    Explv's Walker

    Yeah onStart is breaking script. It's your GUI. Good luck, it's the same issue you tried to help me with :P
  5. Not sure why you'd be having this problem getWalking().webWalk(pos); works fine for me even in instances where it's being called repeatedly, it doesn't spam click for me.
  6. Is it one script in specific and all the other scripts work fine? If so it might just have something to do with all the client build updates recently not being compatible with the script you're trying to start?
  7. @Royal Services yes you seemed rude as hell. There were 3,472,384 different ways to say that and not sound like an asshole but you chose the one that did. Sorry @ognate but he was correct. Either the scripts you previously purchased were monthly or the developers of the script have since left OSBot and taken their scripts off of the SDN. If you see a script you know you've payed for still on the SDN, contact the author and see if he remembers you and will re-auth you. If he doesn't remember you, try to give some evidence of your purchase alongside.
  8. use getWalking().webWalk(new Position(xcoord, ycoord, height)); a Yellow strikethrough means a method is deprecated which means it's still in the API, but there is a better method available and one that is also more up-to-date. A deprecated method is usually going to be removed soon so having it in your scripts is bad because after you release the script, if the devs release a build that no longer supports that method your whole script will break until you update it with the new build path and updated methods.
  9. I'm still banned on chatbox for something that happened like 7 months ago and stupid ass mods can't get over it.
  10. AHHHHHHHHH i had .29 or something INodeRouteFinder nodeFinder = INodeRouteFinder.createSimple(); if (!getArea(location).contains(myPlayer())) { try { WebWalkEvent evt = new WebWalkEvent(nodeFinder, destination); evt.setBreakCondition(new Condition() { @Override public boolean evaluate() { if (getObjects().closest("Gate") != null) { if (getObjects().closest("Gate").hasAction("Pay-toll(10gp)")) { getObjects().closest("Gate").interact("Pay-toll(10gp)"); } else { getObjects().closest("Gate").interact("Open"); } return false; } return true; } }); execute(evt); } catch (Exception e) { log(e); } bby pls. it doesn't walk at all anymore. I tried removing the condition and just setting the WebWalk Event and execute(evt); but it still doesnt walk.... java.lang.NoClassDefFoundError: org/osbot/rs07/api/webwalk/INodeRouteFinder at main.onLoop(main.java:163) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(we:22) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.ClassNotFoundException: org.osbot.rs07.api.webwalk.INodeRouteFinder at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 3 more
  11. No options for import or anything. I'M LEARNING I'M SORRY
  12. My bad I'm multitasking I meant to ask if you could explain creating the conditionals and implementing them into WebWalkEvent breaks over teamviewer. lol
  13. I am a little confused. Do you think you could spare a minute on Teamviewer to let me know what creating your own WebWalkEvent consists of?
×
×
  • Create New...