Everything posted by Paradox68
-
Buying 5M ($6)
nah i got banned lel
-
Just a teaser ;)
That's too long Maldicko, my script can't handle that.
- Just a teaser ;)
- Buying 5M ($6)
-
Buying 5M ($6)
Buying 5M osrs gp for $6 PayPal, I'll go first if you're trusted.
-
Notifications is brokended?
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.
-
need help...windows 10 ..
download java. https://java.com/en/
-
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
- RandQm's Tasker
-
RandQm's Tasker
Now we can really play the game, while not playing the game!
-
Web walking help
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.
-
Freezing when I start a script
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?
-
What happened to my paid scripts?
@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.
-
Star_Scream's OSRS Bond Membership Shop
That doesn't make much sense to be honest now that I think about it. A bond is 2.4m I can buy gold at $1.2-1.3/m which is $2.88-3.12 I get everyone needs to make a profit, but why would I spend more?
-
localWalker.walkPath()?
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.
-
How can I Interrupt a webwalk?
I'm still banned on chatbox for something that happened like 7 months ago and stupid ass mods can't get over it.
-
How can I Interrupt a webwalk?
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
-
How can I Interrupt a webwalk?
No options for import or anything. I'M LEARNING I'M SORRY
-
How can I Interrupt a webwalk?
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
-
How can I Interrupt a webwalk?
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?
-
We share our Gaming setups in this thread!
BONUS: MY DESKTOP
-
We share our Gaming setups in this thread!
>Three systems combined worth of ~$2,000 >Can't buy a $20 curtain set. >Meme arrows
-
How can I Interrupt a webwalk?
- Log out on script stop?
I figured it out like 8 seconds ago lol sorry for the spam- Log out on script stop?
I have no code telling the bot to log out, but when i use this.stop(); it logs out. Is there a method of stopping the script without logging out? - Log out on script stop?