Everything posted by Butters
-
0.53 [☆1000 Feedback☆] [LIFETIME SPONSOR]?️EATING COMPETITORS[BULK]
Sold some gp
-
[Guide] How to Plan a Script
^ this basically. Good job
-
Differences between webwalk, walkPath and walk
Thank you all. Any best practices to combat obstacles universally if walkPath would misclick or something (eg. enter a building whichs' doors get closed) ? Use DoorHandler or something similar?
-
[Will pay for help] Jar File not executable on Ubuntu 14
try doing this: chmod +x /home/customer/desktop/bot.jar If that doesn't work post what you get after trying to launch osbot here
-
Differences between webwalk, walkPath and walk
Hey, was wondering if any of you could provide details and key differences on webwlalking, walkpath and walk. Main concerns are: * Does walkPath handle obstacles * Does walkPath use less cpu and ram than webwalk
-
A Simple Login Handler
Still happening to me in 1.4.138. I think it has something to do with osbot threads. Seems like loginEvent doesn't always fire when it's logged out. Pausing and resuming the script helps.
-
Osbot doesn't start
Same for all, wait it out. Something wrong with OSBot servers
-
Osbot Chat for Talking until its back up
All fine and dandy, though sucks that mules can't launch
-
Character customization issues
Did exactly that. Failed. Will try to mess around again later, thanks
-
Character customization issues
Thanks, I do know what they are, but I failed to get that POST request to inspect. As I mentioned - a noob
-
Character customization issues
I'm a noob at this, might want to share the POST params/screenshot? Failed to catch that pesky POST
-
Open Source Tutorial Island Script
To be honest I'm liking this not for the script, but for the "opportunity" to see how to code properly in general. Beautiful work
-
Character customization issues
Need to pm Jagex with something like "Hello I'm a botter and I've found a bug in the client while making mass tutorial accounts"
-
What most causes this error? | What bot launch interval works best?
This really gives me a headache. OSBot likes to eat quite a few resources during launch. Depending on the CPU power you have, I can launch about 18-20 bots with 60+ second sleeps without a problem. As the CPU usage spikes later bots tend to fail producing the error mentioned. So I started monitoring cpu usage and extending the sleep time if needed.
-
Character customization issues
Widgets ID's didn't change (still 269). Seems like the customization screen is active for a shorter time and auto closes after like 5-10 seconds.
-
Best way to know if a bot has p2p?
Lol thanks, dunno if this is a joke or not, but wanted an automated solution So as I see there's no "straightforward" way doing this, will try the methods you guys mentioned, thanks.
-
A Simple Login Handler
Anyone else have a problem that it not always logs back in after being logged out due inactivity or just before bans? Happens like 30% of the time. Pseudo usage: int onLoop() { if (client.isLoggedIn()) { doStuff(); else { execute(loginEvent); } } Just stays logged out. Pausing and resuming the script helps
-
Best way to know if a bot has p2p?
I didn't find any method regarding this. Would like to do this without trying to hop to a p2p world. Maybe there's a config for it?
-
Referencing log from a static context help
Pass in your main class to the method as a prameter where you want to use System.out then. Then do ParamName.log();
-
Referencing log from a static context help
Use log() instead of System.out.
-
Difference between completed sale or aborted sale
Actually a good question, I was using Status.PENDING_BUY or Status.PENDING_SALE after aborting a sale/buy. But works kinda funky.
-
0.53 [☆1000 Feedback☆] [LIFETIME SPONSOR]?️EATING COMPETITORS[BULK]
sold 141m, went first
-
how to make auto login script
nah it was running, you just didn't see the output, cause you didn't add the -debug flag.
-
how to make auto login script
Once again I might be wrong, but through my trial and error I think OSBot launches a new process after it's login screen. This means you can say bye bye to all the output afterwards. Use java -jar osbot.jar -debug 5011 Or any other port. This will pipe the output. Also, if you're new to this install a Graphical environment and VNC to just play around.
-
how to make auto login script
Use this. Might need some tweaking to suite your personal needs but works well. I seriously doubt you'll have problems with "color detection" when running a VPS without a graphical interface. Correct me if I'm wrong