Skip to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Leaderboard

  1. Czar

    Global Moderator
    10
    Points
    23417
    Posts
  2. Alek

    Ex-Staff
    5
    Points
    7878
    Posts
  3. Apaec

    Scripter III
    5
    Points
    11174
    Posts
  4. John Cena

    Trade With Caution
    5
    Points
    2181
    Posts

Popular Content

Showing content with the highest reputation on 06/03/18 in Posts

  1. ๐Ÿ‘‘CzarScripts #1 Bots ๐Ÿ‘‘ ๐Ÿ‘‘ LATEST BOTS ๐Ÿ‘‘ If you want a trial - just post below with the script name, you can choose multiple too. ๐Ÿ‘‘ Requirements ๐Ÿ‘‘ Hit 'like' ๐Ÿ‘ on this thread
  2. Heres the camera from my QuantumAPI, I fixed a few issues since I posted that snippet. You'll need to adapt it to work without the API but it shouldn't be hard: package rip.quantum.api; import java.awt.Point; import java.awt.event.MouseEvent; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.Vector3D; import org.osbot.rs07.script.MethodProvider; import rip.quantum.QuantumAPI; /** * Camera that uses the middle-mouse button and mouse movements. * * @author lemons */ public class QuantumCamera extends QuantumAPI { public QuantumCamera(MethodProvider methodProdiver) { super(methodProdiver); } /** * Moves the camera to the desired yaw and pitch. * * @param yaw * @param pitch */ public void moveCamera(int yaw, int pitch) { if (pitch > 67) pitch = 67; else if (pitch < 34) pitch = 34; int pitchCur = getPitchAngle(), yawCur = getYawAngle(), pitchDir = pitch < pitchCur ? -1 : 1, pitchDiff = Math.abs(pitch - pitchCur), yawDir = yaw > yawCur ? -1 : 1, yawDiff = Math.abs(yaw - yawCur); if (yawDiff > 180) { // Flip how we get there yawDiff = 360 - yawDiff; yawDir *= -1; } if (yawDiff < 22 && pitchDiff < 14) return; int x = yawDir * yawDiff * 3, y = pitchDir * pitchDiff * 3; int minX = 40 - (yawDir == -1 ? x : 0), maxX = 724 - (yawDir == 1 ? x : 0), minY = 40 + (pitchDir == -1 ? y : 0), maxY = 460 + (pitchDir == 1 ? y: 0); try { Point bot = getMouse().getPosition(); for (int i = 0; i < 5 && !getMouse().isOnScreen(); i++) { getMouse().move(random(minX, maxX), random(minY, maxY)); sleep(50); } if (bot.x < minX || bot.x > maxX || bot.y < minY || bot.y > maxY) { getMouse().move(random(minX, maxX), random(minY, maxY)); sleep(50); } mousePress(true); bot = getMouse().getPosition(); int newX = Math.min(764, Math.max(0, bot.x + x)), newY = Math.min(502, Math.max(0, bot.y + y)); // Use OSBots move here getMethods().getMouse().move(newX, newY); sleep(50); mousePress(false); } catch (InterruptedException e) { getLogger().error("", e); } } public boolean toEntity(Entity e) { return toEntity(myPosition(), e); } /** * Turns the camera toward the entity as if the player were positioned at origin. * @param origin * @param e * @return */ public boolean toEntity(Vector3D origin, Entity e) { if (e == null) return false; moveCamera(getAngleTo(origin, e), getPitchTo(origin, e)); return true; } /** * Turns the camera toward the tile as if the player were positioned at origin. * @param origin * @param tile * @return */ public boolean toVector3D(Vector3D origin, Vector3D tile) { if (getMap().distance(origin, myPosition()) > 16) return false; moveCamera(getAngleTo(origin, tile), getPitchTo(origin, tile)); return true; } /** * Turns the camera towards tile from the players current position. * @param tile * @return */ public boolean toVector3D(Vector3D tile) { return toVector3D(myPosition(), tile); } /** * Turns the camera towards the position from the origin. * @param tile * @return */ public boolean toPosition(Position origin, Position p) { return toVector3D(origin, p); } public boolean toPosition(Position p) { return toVector3D(p); } /** * Faces the camera roughly north. */ public void toNorth() { int r = random(0, 30); if (r > 15) r = 375 - r; getCamera().moveYaw(r); } /** * Faces the camera roughly west. */ public void toWest() { getCamera().moveYaw(75 + random(0, 30)); } /** * Faces the camera roughly south. */ public void toSouth() { getCamera().moveYaw(165 + random(0, 30)); } /** * Faces the camera roughly east. */ public void toEast() { getCamera().moveYaw(255 + random(0, 30)); } public int getLowestPitchAngle() { return getMethods().getCamera().getLowestPitchAngle(); } public int getPitchAngle() { return getMethods().getCamera().getPitchAngle(); } public int getX() { return getMethods().getCamera().getX(); } public int getY() { return getMethods().getCamera().getY(); } public int getYawAngle() { return getMethods().getCamera().getYawAngle(); } public int getZ() { return getMethods().getCamera().getZ(); } public boolean isDefaultScaleZ() { return getMethods().getCamera().isDefaultScaleZ(); } public boolean movePitch(int degrees) { moveCamera(getYawAngle(), degrees); return true; } public boolean moveYaw(int degrees) { moveCamera(degrees, getPitchAngle()); return true; } public boolean toBottom() { return movePitch(0); } public boolean toTop() { return movePitch(67); } private void mousePress(boolean press) { getBot() .getMouseEventHandler() .generateBotMouseEvent(press ? MouseEvent.MOUSE_PRESSED : MouseEvent.MOUSE_RELEASED, System.currentTimeMillis(), 0, getMouse().getPosition().x, getMouse().getPosition().y, 1, false, MouseEvent.BUTTON2, true); } private int getPitchTo(Vector3D origin, Vector3D t) { int pitch = 67 - (int) (getMap().distance(origin, t) * 4); if (pitch > 67) { pitch = 67; } else if (pitch < 22) { pitch = 22; } return pitch; } private int getAngleTo(Vector3D origin, Vector3D tile) { int degree = (int) Math.toDegrees(Math.atan2( tile.getY() - origin.getY(), tile.getX() - origin.getX())); int a = ((degree >= 0 ? degree : 360 + degree) - 90) % 360; return a < 0 ? a + 360 : a; } }
  3. 65 HOUR PROGGY!!
  4. PPOSB - Bank Organizer More than 100+ categories, and thousands of items, to sort for you! All categories and tabs are rearrangeable! PURCHASE HERE! https://osbot.org/forum/store/product/681-bank-organizer/ --------------------------------------------------------------- JOIN THE DISCORD CHAT FOR QUESTIONS/ SUPPORT/ CHATTING! --------------------------------------------------------------- MAKE SURE YOU ARE IN FIXED MODE BEFORE RUNNING THE SCRIPT! RESIZABLE MODE IS NOT SUPPORTED! ALSO PLEASE DISABLE PLACE HOLDERS! New "Advanced Layout Manager" will allow you to add/edit/remove or rearrange items with 100% Customization "Inspect Category" will display the items corresponding with that category Video example of the bank organizer handling a lot of random items (example) HAVE A LAYOUT YOU WOULD LIKE TO SHARE? Please post the layout in the comments below, along with some pictures of your bank, to be added to the list below! The Bank Organizer currently supports over 6,000 Old School RuneScape items. Any items missing will need to be added manually in the GUI. Make sure to save your layouts so you may reuse them over and over again. Check out some of my other scripts!
  5. Looking for a Private Script? Add my discord! Juggles#6302 AIO Shop Buyer http://i.imgur.com/kzB7ZoA.png Have questions? For fast support and latest updates, join the Discord! ๏ปฟ https://discord.gg/pub3PEJ What it does: Supports 99% of shops with banking Automatically detects closest banks Automatically detects if f2p or p2p and hops worlds accordingly All bank booths supported Buys an item from the NPC Walks back to the shop after banking. Enable World Hopping Handles any obstacle in the way of you and the NPC Beautiful GUI Logs out when low on money Supports up to 1 different item! Now supports bank chests Coming Soon Tab: [Closed] This is where I will be custom coding specific spots that you can enable that do not fit into the general criteria. I will be taking requests for custom places to add once the script is uploaded to the SDN and when I have free time. List of Banks Supported Instructions on how to start the script **If there is an obstacles in the way such as a door, please start the script inside the shop at least 1 tile away from the obstacle** ** For best results, start the script in the center of the shop away from any walls by at least 1 tile. ** If you are doing F2P, make sure your world order has all the f2p worlds at the top or it will not properly. Required fields in red: * Everything must be typed exactly how it appears in RS including capitals*
  6. Project OSRS (Scripts have been split up due to a high request volume) ** (Click to view each thread!) ** Updates/Hiscores/Dynamic Signatures: https://www.pposb.org/PPOSB/scripts/project_rs/features.html Completed: Some Features: * Simple to use GUI * Progressive leveling or selective leveling * SMS/Email/Computer System Alert messaging systems * Advanced algorithms for object detection as well as predictions * Choose pre-defined locations or create your own * Choose between banking or dropping (shift-dropping supported) * Progressive mode automatically detects safe areas based off aggressive NPC's * Automatic detection for the best equipment you can use, or define specific equipment to use * Pre-hovering next interaction * Custom mouse and interaction handling system * Advanced paint display * Fail-safe's to make sure your player does not get stuck * Supports tele-tabs and well as traveling on ships * World hopping supported * GUI automatically updates locations available for your desired resource * Infernal items supported with special attack features * Takes a screenshot and logs out if you receive a pet drop * And much more! Skills Supported: - Fishing - Woodcutting - Mining Pictures: If using mirror mode, please make sure you set your Reaction time to 50ms! (To do so, hold Shift and press F4 until the Reaction time reaches 50ms) ** To reduce the risk of your bot getting stuck, please disable rooftops in your settings ** Report a Bug: http://www.projectpactscripting.com/PPOSB/bug.php
  7. 10M OSRS is going to the Person that correctly guesses the winner of the upcoming fifa world cup. If multiple people predict the same winner I will pick a random winner out of the people who picked the winning team. Poll should close on 14.06. 00:00 (should be UTC+0?)
  8. Indeed, it works like a charm with stealth injection. Thanks! If mods could fix this for mirror when they get a chance that would be great. It's a pretty important command.
  9. Tut island 75 Def 91 Magic 60 Prayer 75+ HP Regicide(51 agility etc) + Mage arena II 1. I don't care if the accounts are botted, aslong as you make sure to not get the accounts banned. If you get the accounts banned I will not pay for them (or provide me another account)๏ปฟ 2. You will provide supplies cost, included price. 3. You take full responsibility of the account punishments. If you get the account 2-day banned, I will only have to pay 40% of the account's current price. 4. You can train the accounts by any methods, aslong as you meet the required stats/quests when it's ready. 5. I will provide accounts. 6. If you are not trusted, MM will hold money till service finished. 7. Every order started must be finished within a reasonable time, dont take orders if you dont have time. Looking for best timeframe, not price
  10. Where is the netherlands ???? ow wait LETS GO DEUTSCHLAND
  11. Activated, Have fun!
  12. He wants us to post a price in this thread, though. He didnโ€™t say pm him or discuss prices over skype, etc. I donโ€™t see why itโ€™s hard to take an extra five seconds to post your cb stats. Saves a lot of time for both users but some people like making things difficult.
  13. Maybe you should post this on the perfect fletcher thread?
  14. 1 point
    Okay I'm done with the games. @pccy you have 24 hours to give the items back or you're going to be banned. Any replies after this one not saying you've returned the items are not going to be addressed and will be hidden.
  15. Hey man, could I get a trial, please? Also, if I run it for an hour and log in next day, does that mean I have 23 hours left to run the script, or is it 24 hours after I ran it once?
  16. How did I miss this AIO AIO.. Best of luck ^^ With what you did with the hunter.. this script will definitely turn out great.
  17. Liked thread, can I have trial ?
  18. 1 point
    Hey, The script shouldn't disappear... it's a one-time fee and as such should be in your collection for the lifetime of the script. Please could you double check and make sure that it is not there, in case you missed it? -Apa ( http://ramyun.co.uk/sandcrab/dip-chips.png ) Nice progress!!
  19. May I have a trial, please?
  20. The mouse is actually handled by the client. I can't help for it withdrawing the wrong item amount, or moving fast. I'm sorry
  21. 1 point
    deleted deleted
  22. 1 point
    Stop trolling. Please post in the SPAM section next time.
  23. TWC-third world country?
  24. 1 point
    @s k ii lz z There is no way to prove he did/did not bot the account in question. You took my comment in your hidden dispute out of context for confirmation. You will pay @pccy the remaining 7M 07 payment for the completed training of 2M XP (7M for 1MXP + 7M missing). @pccy You will also return any and all items you have taken from his account in the same trade. Post here confirming when you both have sucessfully done the trade. @s k ii lz z To avoid the accusations and future disputes, next time use a trusted servicer you know you wont doubt.
  25. Atleast you got 1 decent guy
  26. 1 point
    Yeah. Ammonite Crabs? Should be significantly lower as you need a 2 quests and 100 Museum Kudos.
  27. I am at 40 attk 70 str fully botted
  28. Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug - How did you make the bug happen - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? - Normal script or a plugin? - Which exact setup options are enabled? Afk mode, cannon mode, etc etc. Bug #1 Bug: Paint disappears if you move the client from one monitor to the other How did you make that happen: Moved the client from one monitor to the other. Restart: Yes Normal or plugin: Normal Bug #2 Bug: Script doesn't keep track of gp earned, once the script eats food to loot an item it stops calculating the gp value of the items until the script banks, after banking the script calculates items again up until the point that it eats food for inv space. Bug #3 The client fails to use the teleport tab and gets stuck attempting to go through the shortcut that it came into the fight zone from but it clicks on the wrong side of the shortcut so it just sits there clicking. https://i.imgur.com/XMeQBAF.png @Czar
  29. Alright, so I have had some time to mess around with it. I'm still having some issues and have solved some. Still having issues with the tile selector, when selecting a large area it lags a lot. If I save the script it does not save the fight bounds that I had set. I haven't seen it just randomly run away from a mob yet to go attack another mob but now it starts to run back and forth between 2 points while waiting for a mob to spawn and that seems way too suspicious. (It seems that I was able to solve the running back and forth issue by setting up the fight bounds after starting the bot) The lag issue has been solved, seemed that was fixed with a client restart. Edit: The script doesn't save your armor settings It won't use the teleport tab to bank, it tried to run back to the agility shortcut it used to get into the area but didn't actually take it, just got stuck standing against the wall. Mouse speed/reaction time is absolutely ridiculous and no way to change it.
  30. Just bought the script, haven't had much time to mess around with it yet and try and improve it because I'm going to bed but so far I am having a few issues. So the first issue that I was having was the tile selector, when selecting an area it would lag a lot when selecting a large area. After getting an area that I felt would be good there was no ability to modify it in an easy way to add a few more tiles. It would be nice if you were able to add onto your selection so you don't have to go and drag a giant box again. It would also be nice if you could add single tiles attached to your main tile box to get those weirder shaped locations. The next issue that I had was that it didn't save my tile selection, not sure if I did something wrong. Will try again in the morning. When running the script it was attacking a mob and just ran away from a mob to go attack another mob that had just spawned. There was another issue that I had where every few seconds it would have a really bad lag spike for a a little over a second and that had me worried because it would not be able to properly react for prayers or eat food if something was to happen.
  31. @Czar Hi, I am new to the client and I wanted to ask some questions real quick before switching over from my old client. I wanted to know if I would be able to make the fighter prioritize looting existing items on the ground over fighting the mob it is currently attacking? Is the script able to fight dragons apart from green dragons? I know that the cannon part is in beta currently, but does it pick up the cannon when it has a full inv or does it leave it and repair it when needed? If it does pick it up does it account for the inv space needed to pick it up?
  32. hey man, can i try out the perfect al kharid script please? how do you send the trial to me? does it go straight to my collection of scripts?
  33. ๏ปฟ Script has a logic bug (e.g. dies while safespotting) or (cannon mode doesn't pickup arrows) - What is the bug: cannon does not work - How did you make the bug happen: starting the script with cannon in inventory or setup/ setting cannon tile - (optional) recommendation for the bug, e.g. 'make the script walk back' or something - Tried client restart? tried running in both mirror mode and injection client - Normal script or a plugin? normal script - Which exact setup options are enabled? Afk mode, cannon mode, etc etc.๏ปฟ Cannon mode, range mode, tried choosing an npc and tried without. Played with the options and still could not get the cannon to load correctly.
  34. You need to have that option clicked in the settings...(fight in fight zone only or whatever it's called), then while you're still in settings, click on your OSbot window (have keyboard input only), and press F7 then drag it out, then go back to settings and hit start.
  35. Loving the script so far, just wish there was an option to disable the overlay or make it a bit more simplified and possibly a way to access the GUI again to change settings.
  36. Enjoy the IP Ban https://www.sythe.org/threads/exitpoint-fail-to-pay/ I made a thread on Sythe hopefully they care enough to stop this liar before he scams a lot more people.
  37. yes guys be careful, as soon as you hit start, you will get banned.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.