Everything posted by Alek
-
Black Friday Specials - VERY EXCLUSIVE OFFER
THE DEALS ARE NOW OVER
-
Dancing For Money Bot!
Someone tried releasing a premium dancing for money bot once, it was pretty inclusive.
-
Black Friday Specials - VERY EXCLUSIVE OFFER
I chuckled!
-
Black Friday Specials - VERY EXCLUSIVE OFFER
30%-35% is pretty darn solid, I'm standing behind it
-
Black Friday Specials - VERY EXCLUSIVE OFFER
Sponsor Originally: $55.99 Now: $39.95 Lifetime Sponsor Originally: $124.99 Now: $84.95 VIP Originally: $9.99 Now: $6.95 These prices will only last a short while, about 24 hours. Hopefully you guys enjoy the deals! THE DEALS ARE NOW OVER -Alek
-
Black Friday on OSBot?
We're having a sale, it's confirmed. I'm sure everyone here will be pretty pleased with it. We won't be having another sale like this for a while (no other holiday sales), so if you're thinking about it then definitely check back tomorrow.
-
Black Friday on OSBot?
Yo, ill make a post in admin section, read it.
-
Black Friday on OSBot?
If Maldesto doesn't message me, I'll try making something happen (not sure if I have ACP access where I'm at though).
-
osbot using very processor
166MB of RAM? Are you kidding me? After seeing this I'm going to force people to allocate a minimum of 512MB.
-
Why did everyone quit the forum
Everyone? I keep hearing about OSBot dying yet we still have the most (or second most) active users on each day out of the 7 or 8 other clients.
-
NEED Client or developer to respond.
When you mean overshoots, do you mean that it tries clicking outside the bounds of the actual interface?
-
NEED Client or developer to respond.
"extremely detectable script error"? "Extreme Tab maker forum."? Please post the error log.
-
OSBot 2.2.44 - General Maintenance
Sorry for the lack of updates recently, I've had a lot going on leaving me very little room to squeeze in some OSBot time. This update is pretty small, but I figured I would go ahead and release it as I'll be out all of next week. My schedule should stabilize mid-December, so expect some more exciting stuff around that time frame! Changelog: -LoaderGUI is removed on successful bot start --Thanks to @rsdude282 for suggesting this in his thread located here: http://osbot.org/forum/topic/62640-cpu-missusage-paint-method-100-cpu-look/ (VisualVM has been giving me some problems recently and JProfiler expired). Also please congratulate @Apaec on the release of his script APA Auto Alcher. Scripts have been updated before I go on leave, please don't burn the place down while I'm gone. Sincerely, -The OSBot Staff
-
World hopping speed
The world hopping speed is slow because all random events are slow. I slowed them down because OSBot was checking for random events too frequently, eating up cpu. I'll try looking into cycling through random events a bit more frequently, but this is definitely not world hopper related.
-
I'll miss you all... not really. But I'd like to resign from SDN manager
Best of luck with everything man; you're a talented person with a ton of potential.
-
Mobile Apps
For a little while I used to make websites and a majority of my business was cleaning up the work finished by Indians. It was a little disheartening because I always assumed that they were one of the technology leaders.
-
Highscores API
Good commenting, it also looks pretty clean.
-
OSBot 2.2.43 - Combat, Magic, and Interface patches
You can even start Minesweeper with 2mb of memory.
-
[iOS] Fit Mate - Randomize Your Exercise Routes
I don't have an iPhone but I always love to see polished/completed work besides RS. Cool stuff!
-
What is enum, try, catch, exception
AP Computer Science and they haven't taught you about exceptions? What the hell are they teaching you? You need to learn about exceptions pretty early on for scanners and parsing strings into integers (NumberFormatExceptions, etc.). String number = "2"; int realNumber = 10; try{ realNumber = Integer.parseInt(number); } catch (NumberFormatException e){ System.out.println("The number you entered is invalid, using the default value of zero!"); realNumber = 0; }
-
Does non-vip have antiban?
Have you botted before? If not I suggest learning about both OSBot vip features and scripts that implement antiban. You may also want to learn about bans in general..
-
Few api questions
You know you can get a random position in an area using the current API?
-
Scripting Help
In a typical world, only the getter would be public (getInventory()). No idea why it was designed like this, I'd have to look and speculate why.
-
OSBot 2.2.43 - Combat, Magic, and Interface patches
Fixed the partial download problem!
-
OSBot 2.2.43 - Combat, Magic, and Interface patches
This week I decided to go through the API and ensure that we're running the most up-to-date methods. A large part of these patches is due to the recent release of Bounty Hunter. Alas everything appears to be in working order and I even decided to make a few improvements. Changelog: -Updated deprecated Spell class to reflect Spells.NormalSpells -Added Bank method withdraw(HashMap<String, Integer>) -Updated Ancient and Lunar magic Spellbooks (huge thanks to ) -Added Skills value SKILLS_GUIDE_INTERFACE -Added Skills method isGuideOpen() -Added Skills method closeGuide() -Updated Interface method getOpenInterface() to include Skill Guides -Updated Interface method closeOpenInterface() to include Skill Guides -Improved interface closing speed in InteractionEvent execute() -Patched two possible null pointers in InteractionEvent -Added Combat value WILDERNESS_INTERFACE -Added Combat value WILDERNESS_LEVEL_INTERFACE_CHILD -Patched Combat method isWilderness() -Patched Combat method getWildernessLevel() -Patched Combat method isMultiway() -Added Combat method hasBountyTarget() How to use bank.withdraw(HashMap<String, Integer>): HashMap<String, Integer> items = new HashMap<>(); items.put("Tin ore", 12); items.put("Willow logs", 9); bank.withdraw(items); Thanks for your support! -The OSBot Staff