Everything posted by Pandemic
-
Current/Future Projected Plans
Good luck, Laz ;)
- OSBot 2.2.8
-
Dashboard's Farewell
I'll miss you so much
-
Tired of being ignored, and we need your help.
Thanks for all the support guys, now we just have to wait for a developer
-
Tired of being ignored, and we need your help.
Hello all OSBot users. As I'm sure you're aware, the developers (excluding Zach) have been paying OSBot almost no attention, letting their client degrade into what it is today. For all of our sakes, a large group of script developers have been collaborating about what we could do to help better OSBot, so that all of you can have a much better experience here. Anyways, after talking for a while, we came up with a brilliant idea: we'd create an official group of scripters here on OSBot to maintain the client's API (which handles basically everything you guys see, mouse and keyboard movements, banking, interaction, everything!). To ensure that none of the team would slack off, we decided that this team would be paid a small cut of profits, since we're doing the developers' job anyways. So, we presented this idea to @Laz, and he said he would talk to @Maxi about numbers and see what they could do. This was 3 days ago, we've prompted @Laz every day for a response, but we keep getting ignored. It's absolutely unacceptable how the developers are treating OSBot's most talented and dedicated scripters, let alone their own users. --- To prove our worth, many of the scripters with API access has shown how effective this team is, here's a nice list of what we've done so far (all being saved locally, until we have a proper response from @Laz): New and improved mouse The current mouse is often erratic (it skips instead of moves, and sometimes moves EXTREMELY fast) and inaccurate, causing more bans than I'd like to imagine This new mouse never uses the same movements, so it's virtually undetectable Here's a small GIF of the new one (we'll have a longer demonstration soon) Store API fix The current store API would sometimes buy items that the scripter did NOT say to buy, making some buying scripts be broken! Bank scrolling The bank had an issue with scrolling (it often wouldn't scroll right), and has been fixed! Maze random event This has been an issue for FAR too long, and it is now fully operational! Entity interactions This is a big one, if a script you were using has ever messed up clicking on an object or NPC, you'll be happy to know it has been fixed! isVisible() bugThis breaks many scripts, and has been an ongoing issue for quite a while. Scripts would stop, thinking an NPC or object is on the screen when it really isn't. Faster keyboard Our current keyboard is very slow, making it look bot-like, but we've improved it to a much more human-like speed! And many other fixes to the core API These fixes will help all scripters make higher quality scripts by letting them focus on their scripts and not on the faulty API --- We need all of YOUR help and support to make this team possible, so we can hopefully turn this client around before it's too late. Thank you all so much for reading our thread, I hope we have shown you what we're capable of and can't wait to keep improving. Sincerely, @Ericthecmh @Pandemic @Eliot @Dashboard @Swizzbeat @Deffiliate @Nezz @Nitrousek @NotoriousPP @Dreamliner @Khaleesi @Th3 @Alek
-
New To OSBot, Need Help
Yeah, you should cancel it right away so you don't forget. To do that, go to your client area here: (bottom right) Click the script, and press cancel invoice That should be all you have to do.
-
New To OSBot, Need Help
You can pay the $6.99 once for the month, stop the subscription, and use it for a month. If you ever need it again, it'd only be $4.99 for that month
-
Destiny Beta Code (PS4) Contest
Hey guys, I have an extra beta code (all my friends already preordered!), so I'd like to give it away here Post something funny, and I'll randomly choose later today
-
Best scripts for pure combat training?
Any AIO fighter will work (like mine)
-
Gender Friendly SFW forum
Support. I understand that this community is made almost completely of 12-15 year old boys, but it should still be a mature atmosphere since many of us are on here to provide a service to people.
-
best android phone under 400?
I have a G2, and I love it, amazing battery life It's like 9 months old at the most :|
-
Selling Bonds for 1m-1.2m each! 285+ Feedback
Huge vouch for Verified, bought a bond and he was extremely professional and quick! Thanks again!!!
-
Buying 1x Bond - PayPal
Bought, close please
-
Buying 1x Bond - PayPal
Buying one bond via PayPal, post here or PM me
-
OSBot 2.2.2 - New server, offline support, more!
Good job everyone involved
-
GroundItem#exists() throws NPE
Not entirely sure if you can view it (since you're not an SDN scripter), but here it is: Tracker
-
GroundItem#exists() throws NPE
Post it in the tracker.
-
Does anyone know which game this is by seeing these 3 fragments?
Looks like a Zelda game, not sure though
- Pandemic's Scripting Series: Part II - Path Walking and Simple Banking [UPDATED FOR OSBOT 2]
- Pandemic's Scripting Series: Part I - Setup and Basic Logic [UPDATED FOR OSBOT 2]
-
path walking
Why is this so commonly asked for? It's really simple: public void walkPath(Position[] path) throws InterruptedException { for (Position p : path) { if (myPosition().distance(p) > 16 || myPosition().distance(p) < 3) continue; boolean success; do { success = walkTile(p); } while (!success); } } public boolean walkTile(Position p) throws InterruptedException { if (myPosition().distance(p) > 13) { Position pos = new Position(((p.getX() + myPosition().getX()) / 2) + random(-3, 3), ((p.getY() + myPosition().getY()) / 2) + random(-3, 3), myPosition().getZ()); walkTile(pos); } mouse.click(new MiniMapTileDestination(bot, p), false); int fail = 0; while (myPosition().distance(p) > 2 && fail < 10) { sleep(500); if (!myPlayer().isMoving()) fail++; } return fail != 10; }
-
Odd Error
You can't use external library's because it's not in the client's class path.
- Introduction
-
Lol @ sweeping monthly scripts
The developers are currently working on instancing, which I think will help a TON for the customers. I understand your guys' position, script prices are quite ridiculous and with forced monthly fees there's of course people trying to take advantage of it.
-
Help me find a pattern to this madness
Incase you didn't figure it out, use: killCount = config >> 17;