Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/21/13 in all areas

  1. Hello everyone, I'm glad to announce the release of BETA v1.7.11. In this release comes: A fix for Freaky Forester Jagex updated the way the Maze works, there is a theoretical fix in this client that I'm fairly sure of that it will work Some extra puzzles were added to Suprise Exam A small fix to the Frog Queen The inventory API has been extended with a lot of methods that you will like You can now disable the default mouse paint in your script by using the method called useDefaultPaint(false/true) in MethodProvider Support for more message types A fix for a bug with threading A change to how some menu's are handled A message box asking you if you are sure you want to close the tab where you can click yes or no Probably more that I can't remember Download: http://osbot.org Sincerely, Maxi and the OSBot team
    4 points
  2. Hello Everyone, As most of you currently already know, I am quite a hassle for this forum, or rather the Moderation Team, and I also don't play Runescape. While that is fun and all, it gets kind of boring because they just ban me for a day over and over and these infractions never seem to expire, or if they do, in a month+, so basically never. Anyways, I think I'm up to 6 points or whatever and as stated, the bans are getting annoying. If you've been in the community since April, you should/may know that I was one of if not the most active members in the community. I was on (via my phone, and still am) my phone for about 12 hours+ a day (on the forums) and posting A LOT. I think I averaged 50 or so a day. Then I went "silent." I now and have been for months posting 0-5 times a day at most and I got infracted for random crap that of course I disagree with, and never appeal because people are fed up with me and won't remove them because of it. Yeah, yeah, you guys are SO non-bias when it comes to Speakmore posts/threads. I don't believe that crap for a second. When you're moderator+ and this certain person is consistently being a nuisance, you're always reading their posts in a way that you wouldn't read it from a newer player (with better intentions?). Anyway, this thread isn't about yourself, but rather about me and my change of/in attitude and maturity. I'm pretty sure if you knew me back in April, that you liked me much better then, and I would like that again because I'm bored of the trolling and being treated like I treat half of you. I haven't decided if I want to make another account (I think my 19th) or not because: 1) I have a rather large amount of posts 2) I have plenty of posts/topics with "Likes" 3) I want the name Speakmore The reason I would want yet another account: 1) I have a lot of warning points 2) New account gives me a better chance to "restart" So let me know if you guys would be willing to give me a chance to "restart" or something like that. Is this where I state that the entire thread was fake and you all (readers) just wasted 5 minutes of your lives? Nope. -Speakmore
    3 points
  3. Hi! To make the avatar move, it must be within the specified maximum width and height. Exceeding the amount will cause it to resize and compress into JPG format which doesn't support animation. Liam
    2 points
  4. What about other people who don't know a single shit about computers and rely always on av's? They will assume OSBot is a virus...
    2 points
  5. Today I finally got around to finishing up the world hopping system. This was also a nice moment to bring the random management system in to action. For anyone interested in the random management system in action code wise for the world hopping system, here you go: package org.osbot.script.rs2.ui; import org.osbot.engine.Bot; import org.osbot.script.mouse.RectangleDestination; import org.osbot.script.rs2.randoms.RandomBehaviourHook; import org.osbot.script.rs2.randoms.RandomManager; import org.osbot.utility.Gaussian; import java.awt.*; import java.util.ArrayList; import java.util.Map; /** * Created with IntelliJ IDEA. * User: Maxime * Date: 26-05-13 * Time: 19:24 * To change this template use File | Settings | File Templates. */ public class WorldHopper { private final Bot bot; private boolean isHopping = false; private int nextWorld = -1; public WorldHopper(Bot bot) { this.bot = bot; } /** * Logs you out and changes hops to the world specified. This method does not take in to account full worlds yet, * so hopping to a full world will fail. * @param world Worlds range from 301 to 378 but remember that the worlds * 307, 315, 323, 324, 331, 332, 347, 348, 355, 356, 363, 364, 371, 372 * do not exist. */ public void hopWorld(int world) throws InterruptedException { nextWorld = world; isHopping = true; bot.getScript().randomManager.registerHook(hook); while (bot.getClient().getLoginState() != 10) { if (bot.getScript().logoutTab.logOut()) { Thread.sleep(500 + Gaussian.random(300, 300)); } } } private static enum State { GO_TO_SELECTION, WORLD_SELECTION, UNHOOK; } private RandomBehaviourHook hook = new RandomBehaviourHook(RandomManager.LOGIN_SCRIPT) { private State state = null; @Override public String getName() { return "World Hopping"; } public void scan() { if (!isHopping || bot.getClient().getLoginState() != 10 || nextWorld == -1) { state = State.UNHOOK; return; } if (bot.getClient().getColorPicker().isColorAt(54, 294, Color.BLACK)) { state = State.WORLD_SELECTION; return; } else { if (bot.getClient().getCurrentWorld() == nextWorld) { state = State.UNHOOK; } else { state = State.GO_TO_SELECTION; } } } /** * The main loop logic. This will continue until shouldActivate() returns true or * -1 is returned. * * @return The time to sleep until the next loop. * @throws InterruptedException */ @Override public int onLoop() throws InterruptedException { scan(); switch (state) { case GO_TO_SELECTION: bot.getClient().moveMouseTo(new RectangleDestination(new Rectangle(12, 466, 86, 26)), false, true, false); return 600 + gRandom(200, 200); case WORLD_SELECTION: Rectangle dest = getWorldMouseDestination(nextWorld); bot.getClient().moveMouseTo(new RectangleDestination(dest), false, true, false); return 600 + gRandom(200, 200); case UNHOOK: nextWorld = -1; isHopping = false; bot.getRandomManager().unregisterHook(RandomManager.LOGIN_SCRIPT); return -1; default: return 500 + gRandom(500, 500); } } @Override public void onExit() { isHopping = false; nextWorld = -1; } }; /** * Calculates the rectangle of the destination to click a world. * @param world The specified world in the range of 301 - 378 * @return The rectangle used for the mouse destination */ private Rectangle getWorldMouseDestination(int world) { ****** } ***** static { ***** } } Furthermore I started on a breaking system. You will be able to set your break settings per saved account profile, which will then be used if you enable it. Expect both updates to be released tonight or tomorrow, Sincerely, OSBot.org
    1 point
  6. Enjoy guys use this!
    1 point
  7. Hi everyone, I'm looking for an account with 70+ prayer so we can add a fully functional prayer api. PM me if you can share your account, I only need one. Maxi
    1 point
  8. 1 point
  9. Not even funny holy shit.
    1 point
  10. Terrible code.. if(worldNum < 301||worldNum == 301 wat... learn to <= m8
    1 point
  11. Haha you actually remember me from that server huh.With Brandon and uhhh what was the girls name. I was helping like 12-15 hours a day on that server. Then Jordon demoted me because Brandon never talked to him about me ^_^
    1 point
  12. Knew you from Jordan's server since 2010 but you wouldn't know me by this username (Zerox). Honestly, I would just stick to Speakmore. Why? Because knowing you, by now you would of helped dozens or more people. Good respect from me to you as well as others. Fresh start? Don't fall into that pit. What's better? Being respected by many, or being hassled by a few.
    1 point
  13. .I like the new theme better, although the Sponser rank is extremely hard to read with a white background.
    1 point
  14. 1 point
  15. 1-3 (24 wind strikes) 24 x 10 = 240 gp 3-11 (92 confuses) 4 x 184 = 736 5 x 92 460 gp 460 + 736 = 1196 11-19 (125 weakens) 4 x 250 = 1000 5 x 125 = 625 1000 + 625 = 1625 19-55 (5610 curses) 5 x 16830= 84150 5 x 5610 = 28050 84150 + 28050 = 112200 55-99 (197967 alches of yew long bows ) ( profit )197967 x 188 = 37,217,796 37,217,796 - 115261 = 37,102,535 37m
    1 point
×
×
  • Create New...