Jump to content

Leaderboard

Popular Content

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

  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. What script did it say was malicious? If you are getting warnings from McAfee when just accessing the site then add an exception. It is just a false positive.
    1 point
  8. 1 point
  9. Yea that was me at 1AM last night. Please report any bugs with it (including any grammatical errors, or any other ways of wording the text in the confirmation box).
    1 point
  10. Not even funny holy shit.
    1 point
  11. Terrible code.. if(worldNum < 301||worldNum == 301 wat... learn to <= m8
    1 point
  12. 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
  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 point
  16. 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
  17. Just A Quick Tip For People Wanted The Quest Cape. You will need: Attack 30 Hitpoints 10 Mining 60 Strength 52 Agility 59 Smithing 65 Defence 65 Herblore 57 Fishing 62 Ranged 60 Thieving 58 Cooking 70 Prayer 50 Crafting 61 Firemaking 50 Magic 66 Fletching 50 Woodcutting 71 Runecrafting 50 Slayer 42 Farming 49 Construction 34 Hunter 27 Combat 85
    1 point
×
×
  • Create New...