Jump 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

Popular Content

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

  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. 1 point
    Features๐Ÿค– Mines Anywhere Banks Anywhere Ore Selection Pre-Hovering Banking/Dropping World Hopping Instructions๐Ÿ“” Have usable Pickaxe with you Start script next to ores Select Ore(s) Push Start Downloadโฌ‡๏ธ Here Avoiding Bans Donate๐Ÿ™
  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. 1 point
    View in store ($3,99 for lifetime access) Features: Supports every location you would ever want to cook (anywhere missing? request it!) Supports almost every food item cookable on a range or fire (anything missing? request it!) Smart Target-oriented back-end stops the script when you have accomplished your desired goal Option to move mouse outside screen while cooking to simulate human AFKing Where Make-All isn't available, A Gaussian distribution based suffixed string generation algorithm randomises entered Make-X values Utilises a combination of WebWalking and recorded paths to ensure the script never strays from it's job Simple, intuitive GUI which auto-detects your food and location based on your inventory and minimap position Stable cooking & banking algorithms, tuned individually for each food item and bank Clean, informative, Anti-aliased, un-obstructive and fully movable self-generating paint Movable on-canvas scrolling console logger Efficient script logic ensures an EXP-optimised experience Normally distributed response times to simulate a human's reflexes Stops & logs out when out of food, saving your progress to the console and web Dynamic signatures allow you to track your progress as you use the script Handles obstacles and doors between the bank and the range to ensure door spammers cannot hinder your gains CLI is supported for all hardcore chef needs ... and many more ... Supported food: This script only supports cooking these food items on ranges/fires, it will not combine ingredients to make items such as Tuna potatoes or Pineapple pizzas. Shrimp Anchovies Sardine Herring Mackerel Chicken Beef Bear meat Rabbit Rat meat Sinew from Bear meat Sinew from Beef Trout Salmon Cod Pike Bass Rainbow fish Tuna Lobster Swordfish Monkfish Shark Dark crab Sea turtle Manta ray Anglerfish Karambwan Poison Karambwan Bowl of Water Uncooked pizza Potato Seaweed Sweetcorn Stew (new!) Curry (new!) Just ask for a new food item to be added! Supported locations: Rogues den Lumbridge Kitchen (new!) Catherby Nardah Tzhaar City Al-Kharid Zanaris Neitiznot Varrock East Hosidius Kitchen Gnome Stronghold Varrock Cooks' Guild Port Khazard Edgeville Mor Ul Rek Myths' Guild (new!) Just ask for a new location to be added! Why choose APA Scripts? As an experienced veteran scripter here on OSBot, I strive to give you the best user experience that I can by providing frequent updates and fixes. With over 40 cumulative 5 star reviews on the store, as well as my Scripter III rank, you know you're in safe hands. Want something added? Don't like something? Have an awesome proggie to share? Let me know! Example GUI: Starting from CLI: Gallery: _________________________________________________________________________________________ Credits:
  6. 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*
  7. 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
  8. 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?)
  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. Done gl on trials guys
  19. 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
  20. 1 point
    nvm script works great I love it already gained 300k xp in 3 hours so op
  21. 1 point
    Added
  22. 1 point
    deleted deleted
  23. 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.
  24. Atleast you got 1 decent guy
  25. 1 point
    May I try this out?
  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. Can I get the trial bro? Thanks
  29. The normalization doesn't look (quite) right on line 187 and 188. Change the int to a float for "angle", then normalize it with Math.atan2(Math.sin(angle), Math.cos(angle)), then you can cast this to an int. See if that works out.
  30. I reported this months ago, only just got back into botting again. It does not even fish, from memory it used to just run south of the fishing spot, and continue running, and not sure if banking via fairy ring works either.
  31. 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.
  32. 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.
  33. 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?
  34. ๏ปฟ 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.
  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.

Account

Navigation

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.