Everything posted by Mysteryy
-
2 Questions
That's not how it works. The person who accepted it would put 100 percent of the blame on alek and say the bot is bad and got him banned.
-
2 Questions
Scripters can make random solvers last I checked. Making random solvers is a big time sink and they will never be 100 percent. There are a ton if higher priority items that should and are being addressed first. Would you rather the bot ignore randoms, or would you rather come back to find out your stuck in a random?
- Won't walk?
-
How can I store multiple areas in one array?
See this post I made, it should help you out. It basically has everything you are looking for, you can just change the area implementation. http://osbot.org/forum/topic/64420-banking-enum-with-areas-and-methods/#entry707698
-
Request a script and get free access to it!
- I Want to start Making scripts for bots Where is a Good place to star learning
Just spam me in chat like a normal person. Xd- Request a script and get free access to it!
Can you make me a script to get bananas? I like bananas. Good idea ya?- Banned from Agility Bot(Freezing) - MysteryyAgility & ExtremeRooftop
Was this an issue before the recent client update?- Keep getting this error..
Just reboot your computer.- logging to file in osbot
Should just be able to call super() and then add the additional file output afterwards (inside of the overridden log method).- Is there any way osbot client/pw database could be hacked?
Databases can be hacaked but even then passwords are stored in a hashed string not plain text. Your rs account information is actually stored on your computer. Osbot doesn't store them anywhere else. If your account info was stolen there is 0 chance that it was an osbot vulnerability.- Documentation could be a bit better
Fair enough. Im not disagreeing with you necessarily I am just saying it is a safe assumption if you are familiar with the api here. Where I work I write alot of code documentation, and I will always specify something like you stated, "otherwise returns null". For the scope of OSBot, its pretty safe to assume that it will be null though. ^_^- Documentation could be a bit better
Why should it mention that? If you ever try to get an object, interface, npc, or anything else, assume that if its not there it will return null. That is the only logical thing for a method to return when it is supposed to return an object and it fails.- 2 Good Saturdays
I went to a Linkin park/incubus concert a couple of years back. They both performed really well, I am sure you will like it. ^_^- Banking Enum With Areas and Methods
Its just the way I like to do things. I dont like to depend on things if I dont have to. Just my personal preference, not saying its bad to use the API. :P- Banking Enum With Areas and Methods
The less that you can rely on the API the better. Making your own banking enum will abstract this from the api and make it more reusable.- Banking Enum With Areas and Methods
Hey i had to make the files. Thats alot of work. xD- Banking Enum With Areas and Methods
Since Novak is a lazy bum I made a banking enum. I needed this for my web walker anyway. Banking enum (with areas): Useful methods inside of a banking class that use the enum: You can use the methods in something like this: /** * Created by zach on 1/5/15. */ @ScriptManifest(name = "Test", author = "Mysteryy", info = "Testing", version = 1.0, logo = "none") public class Test extends Script { Banking banking = new Banking(); @Override public void onStart(){ Player player = myPlayer(); if(player != null){ this.log(banking.getNearestBankArea(player.getPosition()).getMinX() + ", " + banking.getNearestBankArea(player.getPosition()).getMaxY()); this.log(banking.getNearestBankCentralPosition(player.getPosition()).getX() + ", " + banking.getNearestBankCentralPosition(player.getPosition()).getY()); this.log(BankAreas.DRAYNOR.getCentralPosition().getX() + ", " + BankAreas.DRAYNOR.getCentralPosition().getY()); this.log(BankAreas.DRAYNOR.areaContainsPosition(player.getPosition())); } } @Override public int onLoop() throws InterruptedException { return 50; } } which would output [iNFO][bot #1][01/14 10:35:12 PM]: 3092, 3246 [iNFO][bot #1][01/14 10:35:12 PM]: 3093, 3243 [iNFO][bot #1][01/14 10:35:12 PM]: 3093, 3243 [iNFO][bot #1][01/14 10:35:12 PM]: true Let me know if you have any questions or suggestions.- Bank Enum with Areas
The methods I make are the ones you need. No more no less. Mysteryy knows what you need better than you do. Trust me I'm not a doctor.- Bank Enum with Areas
Yea but that could add tiles that are actually outside of the bank. Xd- Bank Enum with Areas
Pls I don't half ass stuff. My enum contains both .getArea and getCentralTile. :p You don't have to lift a finger bb- Bank Enum with Areas
Any specific areas you were looking for? Just so I can make sure they are in it. I need to get them all anyway and I already started a enum for it.- Bank Enum with Areas
I got you bro. Working atm but I'll give you one tonight or tom.- Failed to handle your request
What manages to download?- Failed to handle your request
And you tried killing all java processes/rebooting you pc? - I Want to start Making scripts for bots Where is a Good place to star learning