Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/28/20 in all areas

  1. No. It just double clicks when run energy is low, and grabbing item prices is fucked too. Script itself still works.
    3 points
  2. 60/60/60 combat 70 prayer 76 mining
    2 points
  3. Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. $9.99 SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results
    1 point
  4. ♔CzarScripts #1 Bots ♔ Proven the #1 selling, most users, most replies Script Series on the market. Big THANK YOU to all our wonderful users and supporters over the 8 years, we couldn't have done it without you. Czar Bots have always been the Best and the most Feature-rich bots available with the most total sales in OSBot history. Come and find out why everyone is choosing Czar Bots today. ♔ LATEST BOTS ♔ If you want a trial - just post the script name and it will be activated after I hit 'like' on your post Requirements: hit 'like' on this thread
    1 point
  5. Progamerz AIO Prayer Buy now($6.99): Store Or Like the post and comment below to get 12 hours trial Discord Support Server Features Simple and easy to use GUI Supports 4 different modes(Bury, Gilded altar, Chaos Altar, Ectofuntus) Supports burying bones available in bank Supports looting bones around and burying Supports using gilded altar in Yanille OR Remmington Supports multiple banking methods for gilded altar Supports "Personal Host" mode, in which the script will light up the incenses when needed Supports "Friend Host" mode, in which the script will go to, and use the bones on altar Supports auto detection of gilded altar host, when having the option "Auto find host" enabled Supports logging out when host is not found and option "Auto find host" is not enabled Chaos altar supports travelling using Burning Amulet and dying from the wine of zamorak to get out of wilderness with druid support Chaos altar supports Anti-PK, it will try to hop worlds whenever a player appears Ectofuntus supports with using ectophial to teleport to ectofuntus or going by walking to ectofuntus Ectofuntus supports filling buckets with slime or using a bucket of slime available in the bank If you have any suggestions or features you would like to see in the script, comment on the thread! Screenshots CLI(Command line interface)
    1 point
  6. 01/04/2024: Released chop and firemake plugin!!! Update November 2023: Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!
    1 point
  7. Preventing RS Botting Bans V3 Written by Alek 1. Introduction This guide is Version 3 of my original guide released 4 years ago. I decided to focus more on commonly asked questions and general misconceptions about botting. Many of the topics are very technical and there are brilliant engineers who both bust bots and create them. The majority of botters who come here have little to no programming experience, or very little knowledge in subject areas such as reverse engineering. It’s very difficult to fully explain all key concepts, however hopefully this material will give you a base reference to draw your own conclusions. 2. How to not get banned The secret formula to botting is keeping a very, very, low profile. This game has been around for 15+ years, that is a TON of data to play with. Generally speaking: -Don’t bot more than 4 hours per day -Don’t bot more than 10 hours per week -Diversify your tasks -Don’t use a VPN/VPS/proxy -Don’t bot more than one account -Do quests -Don’t RWT/goldfarm -Don’t bot in hot spots, use places like Zeah You’re going to have a ton of people say, “oh I suicided for 11 years straight, never logged out, I make $500k/year”, etc. They simply don’t. Either they haven’t botted long enough or their claims are baseless. If you want to keep your account relatively safe then don’t bot longer than the times I recommended above. Time played is a key factor into profiling a bot, it’s been even talked about on official livestreams during live bot busting events. 3. Misconceptions The biggest misconception is that the company doesn’t have any automatic detection systems. Although the detection vectors improve over the years, there are official statements claiming that all bans are manually reviewed before being issued. THIS DOES NOT MEAN ACCOUNTS ARE NOT AUTOMATICALLY FLAGGED. Common situation: Suicide bot on the weekend without getting banned, account gets a ban on the following Monday or Tuesday. This is because your account was probably flagged over the weekend, then eventually reviewed for the final determination on the following business days. Another misconception is that if you “survived the weekend”, then you are safe. This is certainly not true, most anticheat will "flag and monitor". This means that you were in fact detected but the anticheat is watching your actions very closely to grab more information about what you are doing. Information from these monitoring sessions are used to quickly detect and ban in the future. For Runescape, one example is the use of bot worlds. Another non-Runescape example is Valve-AntiCheat profiling numerous hacks over the course of months and then issue behemoth ban waves all at once for games like Counter-Strike. 4. Antiban/Antipattern Scripters who include antiban/antipattern methods in their scripts are either naive, new scripters, or are trying to earn more sales by making false promises. Competitor clients further this perpetuation by forcing script writers to implement these methods. It’s a gimmick and overall you’re going to get banned whether you use these "special methods" or not. Some of these “special” (aka worthless) methods are: -Moving your mouse randomly -Checking your exp -Examining random objects -Moving your camera angle randomly -Implementing “fatigue” systems -Diversifying the way you interact with objects One of the special methods I’d like to talk about which was not listed above was randomizing sleep time between actions. This is especially special because there are numerous flaws with it. 1. Your computer doesn’t perfectly execute actions in the same time every time 2. Your script doesn’t perfectly loop in the same time every time 3. Your ping fluctuates causing a delay between the client and server 4. If the top three all remained constant, you could find the upper and lower bounds of the mean and use statistics to recreate the sleep time. Anti-pattern is a bit different, but a lot of scripters have been wrongly claiming their script having “antipattern” when they’re really using the same “special methods”. Examples of antipattern: - Talking to other players (Cleverbot) - Mixing up tasks (perhaps after accumulating X gold, go to the Grand Exchange and sell) The goal of anti-pattern is to reduce the chances of being manually reported by other players for botting. Although “antipattern” is more desirable than “antiban”, there is still no definitive proof of the impact it has in the total picture. 5. Client detection 5A. I’m going to keep this relatively brief because this is probably the most technical aspect of this guide. There is an overarching debate over Injection vs Reflection and it’s pretty silly. Both are detectable because both have different ways you can detect it. In the non-Java hacking world, this would be equivalent to something like ReadProcessMemory versus LoadLibrary. To better put it, reading memory from outside the process versus inside. There are ways to hide it, ways to find it, ways to hide against the ways to find it, and ways to find the ways how to hide it against from finding it. As you can see, it’s really cat and mouse and it boils down to implementation. 5B. Additionally, you can be detected for macroing without even using a client. You can banned for using Gary's Hood or AutoHotKey. Both of these use some sort of Windows API function like SendInput, from protected mode. This is how color-bots also get detected without injecting/reflecting the client. 5C. Mirror Mode adds some protection to users where the normal OSBot client can be detected. Think of mirror-mode as a safety catch rather than a comprehensive antiban measure; and yes mirror mode has genuinely protected users at least on one confirmed occasion. In summary, you will still get banned because mirror-mode only protects you from one aspect of botting and there are potentially hundreds of detection vectors. 6. Conclusion and final remarks Having good botting habits like I outlined in section two, and having a good script which is reliable and not prone to getting baited (locked behind doors, etc), is your safest bet. There are people who do “studies” and “research” but ultimately their results are inconclusive, non-definitive, and certainly only proves a correlation and not causation. There are too many variables to isolate to make any data worthwhile; ip address, computer, scripts, clients, botting locations, skills, account time, bot time, quests, RWT, java exceptions, client detection, the list goes on and on. Too many variables to isolate, too much that we cannot prove. The bottom-line is that the only people who know specifics about the anticheat system are the anticheat developers.
    1 point
  8. AIO combat script. Enter NPC name and load food. Load current player position. It will keep attacking the NPC until out of food, loot, then it will run to closest bank and refill inventory. After that it returns to original location, and keeps going - repeat until out of supplies. Able to save settings so it doesn't require re-typing. Infinite mobs/locations/combat styles can be saved. Limits: Some positions might not work. Will likely result in script not refilling food. 99% of spots work fine though. To use safespot feature: Load/set position as the safespot. The bot will return here after aggro is gained. Might be broken in some spots, but seems to work well overall. Glhf! NOTE: Looting is based on GE prices. Sometimes these prices aren't loaded for an item, and bot won't loot that item. If it misses one type of item over and over, it's due to this. Changelog: Coming soon: Images:
    1 point
  9. New AIO F2P script for Firemaking! Just 750k will get you the 99 Firemaking skill cape! Only 94 minutes from 1 to 60 Firemaking! Features an algorithm that integrates flawlessly with mirror-mode and will make your bot appear more realistic than ever! Materials needed in bank to start: * logs: 85 (FM LVL 1-14) * oak logs: 220 (FM LVL 15-29) * willow logs: 560 (FM LVL 30-44) * maple logs: 101288 (FM LVL 45+) * tinderbox: 5 * location: anywhere!
    1 point
  10. Molly's Tanner This script tans hides at Al Kharid for gold. Buy HERE Requirements: None! Features: - Hopping out of bot worlds - Stamina potion usage, the bot will use one dose prior to each run -Tans cowhides, and all dragon hides Setup: Start at Al Kharid, have coins and hides in bank and let it do work! CLI Setup: The script portion of your .bat file should be setup as followed: -script 839:Antiprofile--Potion--Hide Replace Antiprofile with "On" or "Off", replace Potion with "Stamina", "Energy" or "None". Replace Hide with one of the following: "Soft", "Hard", "Green", "Blue", "Red", "Black". Proggies:
    1 point
  11. Hi, We are pleased to announce the winner of the OSBot Client design competition is @Fruity. We decided after a lot discussion on this as our new client. We hope you are as happy as we are! @Fruityplease pm me for with details of your prize choice. Thanks everyone who entered!
    1 point
  12. hammer go brrrrrr but from what i remember obby is best inslot until 92+ hp where dharoks is better
    1 point
  13. obsidian gear for melee/void msb i + rune arrows for ranged
    1 point
  14. : o can i have a trial on this one : o? its the last one i need for my bf's X D
    1 point
  15. I liked the thread, can i have a trial ?
    1 point
  16. Hey localbot. I have been playing Runescape since 2009 watching account prices periodically. I would say this account is somewhere between 25m-30m OSRS GP.
    1 point
  17. could i get a trial please!!!
    1 point
  18. Can you look into adding textfield on the "Scipt selctor" that would run the script with CLI.
    1 point
  19. No plugin. Either way Idk what I did, its working perfectly now. Im not touching the task level setup, at least not for now.
    1 point
  20. Not gonna be doing that, what do you think so far? Cold/flu or you think as serious as media is making? I'm dreading Christmas, i'll put on weight there with my giant plate of food xD Keep going brother keep going! It's also no simp September! Yep, working on yourself 100% in this time if it be soul searching or working out etc or just some general fresh air is good I feel the same as you somewhat, although I still have a lot to go when it comes to sort of understanding myself more I am getting there - Gyms have just opened 24 hours to my understanding (not sure if we are allowed to just go in though) and as for stores etc we have the mask rule coming into play tomorrow which isn't bad, Although I do not drink/smoke/anything related, unless you count caffeinated drinks Glad to hear you're keeping safe Limmy Good good lad
    1 point
  21. Good morning, Could I receive a trial? What's needed on the slave accounts to be running ess for lavas? could a brand new lvl3 do it?
    1 point
  22. Script is running smoothly, I'm looking forward to the latest version
    1 point
  23. Hey @Czar, any timetable on when Bloods are being implemented?
    1 point
  24. BBD plugin and using rapid style with blowpipe, thanks
    1 point
  25. Muling is enabled through CLI if you read under 'CLI information' in the main thread it links to another forum thread showing how to run osbot with command line
    1 point
  26. Really good bot! Thank you!
    1 point
  27. Interesting, although, most of this i was already aware of. The main problem i see with bots is just simply said: everyone has their own style of 'playing' runescape and bots cannot 'replicate' somebodies playstyle. Let's say you did mining from 1-50 (and you probably have had your mouse in all places on the screen, turned the screen, made clicks, took pauzes and got exhausted, making you do less and less of said things) now, starting from 50 to let's say 99, you start botting, problem there? your whole pattern of doing things 'change', it's like you said alek, it isn't 1994 anymore, and the simple 'change' in behaviour that throws around your playstyle to something else, will ring a bell. I've been in the GTA V scene, and remember the first time i used a mod menu there, it got me banned the first time, so things not to do became very clear quickly, then started my own mod menu, and that's where you get to see and learn that making any type of cheat cannot be turned into a completely undetected something, and the same is true for every type of automatic bot/macro, cheat or mod menu's you can use online, we had to change our methods up alot, and the first wave of being able to use the same method was the longest period, that being the 'scripthook' method, stayed undetected for a few patches untill the ban hammers started to fall quicker and quicker onto everyone who used it, or yes, those who did use it for even only 10 minutes. That's when the entire thing started to get detected more quickly, up untill now where almost all 'Free and paid' mod menu's can be detected in a matter of minutes and a ban is assured regardless of how you get the menu to work in the game. Runescape is a different thing, but, staying unbanned and undetected is a lie, many game companies invoke the 'delayed ban' method, and GTA V was no exception to this. The Main problem? Public free and paid scripts for runescape are the first to fall, and the main cause of everything being detectable. The more things poeple can see and use, the more info you feed unknowningly to jagex and other online game companies. The second problem: The method used to make bots and cheats work. Client not working? doesn't mean the client is detected, it simply means the way of injecting and/or hooking the 'code' required to make scripts work is bypassed, or that other things have 'changed'. GTA V mod menu's same story, reason why we got banned from the game from using mod menu's online was purely unfair advantages, and the actuall nuke on the 'method' used (scripthook and natives) followed many patches after the banhammers fell. So @Alek this is a good guide to actually make poeple aware. ;) (or those who care to read it)
    1 point
  28. Thanks for the update! I've also found that there really was no difference between ban rates botting via injection or reflection. I would also say from the accounts that I've botted so far to keep your tasks cycled every few hours or so. Mixing up the tasks has really kept my accounts alive far longer.
    1 point
  29. uh , im botting to get 400 total every week on 2-3 accounts , never got ban by doing it , training one skill 2hours max . talking with random people i added to friends list or random clan chat like every 5 mins (i work with computers so im always looking up my bot ) doing all f2p skills (f2p botting ) telling people to fuck off playing 16-18hrs a day idk why , but it works for me , i dont use VPN or proxy , it may be blacklisted , i use clean wifi spots around me easy by the way , i use free scripts
    0 points
×
×
  • Create New...