Jump to content

Leaderboard

Popular Content

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

  1. V1.074 Has Been Pushed- Added Limpwurt Plant
    2 points
  2. public void onResponseCode(int code) throws InterruptedException { log("Code: " + code); switch(code){ case 4: log("BANNED"); sleep(3000); System.exit(0); } }
    2 points
  3. NEW: Released Chop & Firemake plugin 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
  4. Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
    1 point
  5. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
    1 point
  6. will be paying upfront with ors gold or bitcoin high rep people only
    1 point
  7. Thank you for doing my Rc, really appreciate it! Plan on using your service for any future needs?
    1 point
  8. Could you please fix it so your perfect fighter bot returns to the safespot it starts attacking something and I have it turned on so it returns to safespot when attacked and it doesnt move
    1 point
  9. @Antonio Kala can you help a fellow farmer out?
    1 point
  10. I mean, you wouldn't want Slicer's help with that unless you're fine with a C in elementary addition.
    1 point
  11. wow and whos gonna do my math homework now
    1 point
  12. Hello guys, @Malcolm and I will be running a Beta Test over the next month for our slayer script. We need people to help us improve the script. Currently it supports Turael but we are working on Vannaka and will be releasing that one once Turael testing is complete. Why Beta Test? You will be the first to use a brand new script before anyone else does. Bot to high stats. Make osbot great again. Requirements Bot at least 1 hour a day using the script. You must be at the computer watching to provide me feedback Have discord so we can chat easily Have an account you are willing to use. Probably like 30-40 combat should be fine for Turael? Have ideas to add to the script and provide detailed feedback 100+ post count or VIP Here is the thread for more details and specifics on the script. If you are interested in Beta Testing, join the discord and submit your app in #beta-test-applications https://discord.gg/xEJwKX7
    1 point
  13. Just giving TIP how to get most easy 99s in osr without getting ban and 100% afk.. most of you know for record mouse stuff but its for those that doesnt know.. Downoald mouse and keyboard recorder: 99 magic, you can record alot of spells and play them til level 99, i personaly used plank maker till level 99, 0gp loss.. 99 crafting, glass blowing. 99 fletching record 3-5 times log cutting or bow stringing, and repeat till 99.. 99 thief, use cc "thievinghost" go to ardy bank and use it on ardy knight.. i used around 10-20 minutes recording with my mouse so its alot of diffrent patterns my english isnt perfect but i hope i helped <.< http://prntscr.com/hgaw7n here is link for the program i use.
    1 point
  14. can confirm working fine lol...
    1 point
  15. Mirror, it was working before yesterday just fine Issues started around 2 days ago out of the blue.
    1 point
  16. It's the risk that comes with botting. There are many factors that cause an account to be banned. All good though.
    1 point
  17. use python and scrape the webpage of rs account settings
    1 point
  18. Ouch dude, definitely new strategies are needed if they've gotten new ways to detect people rwting. Best of luck in the future
    1 point
  19. I remember my first K
    1 point
  20. Hablas espaΓ±ol?
    1 point
  21. } else if (currentState == States.DROPPING) { //if the state is dropping... log("Inventory full dropping fish.."); //log that we are in this state and executing getInventory().dropAllExcept("Feather","Fly fishing rod"); //drop everything besides feathers and rod int openslots = (getInventory().getEmptySlotCount()); //variable for open inventory spots if (openslots == 26) { currentState = States.FISHING; } } } corrected. now it will go the distance.
    1 point
  22. It's a learning lesson for all. No hatred, just discussing.
    1 point
  23. You do not set your states anywhere, so the script you have posted will not work. ? Edit: Upon re-reading it, I've spotted where you set your state, but I still can't see it working. The script will inevitably get stuck dropping forever, as the state is never set back to fishing.
    1 point
  24. @redeems Well I appreciate the feedback nonetheless and i'll have to give you're method a try. Also I use getMouse().moveOutsideScreen(); with Afk tasks like fishing cause most people click on the fishing spot then scroll over to Youtube or w\e else. Just seems more realistic to me.
    1 point
  25. the states are an enumeration. using states allows you to be dynamic. for this, case/switch works just fine, but what happens when you have a lot of cases, gets confusing. Your way is not incorrect. It's never wrong if the outcome is successful. yours is correct. It's just good practices.
    1 point
  26. if(!myPlayer().isAnimating()) {ο»Ώ if(!myPlayer().isMoving()) { if(!getInventory().isFull()) { if(fishSpot != null) { log("Fishing.."); you can just use and instead of doing each if. if(!myPlayer().isAnimating() && !getInventory().isFull() && !myPlayer().isMoving() && fishSpot != null) { log("Fishing..");ο»Ώ fishSpot.interact("Lure"); sleep(random(300,600)); getMouse().moveOutsideScreen(); }
    1 point
  27. sticky this so 4iq users don't get scammed
    1 point
  28. Just have weath whitelist you from bans
    1 point
  29. You definitely shouldn't run it for more than 2-3 hours, even 2 is cutting it. It's very hard to get away with long hours of botting these days, not like it was a few years ago. WC is pretty afkable which makes it a little less detectable, but if you used another script it could be a delayed ban. Just from my experience I only bot 1.5-2hrs at a time and take breaks, do a quest or something, then go back at it and have been fine. (knock on wood)
    1 point
  30. Hearing there is a yellow to orange risk ban rate on this sort of script, any one able to confirm or deny that claim?
    1 point
  31. I highly recommend against botting on throwaway accounts, unless you are simply goldfarming and offloading profit to a mule perhaps. Fresh accounts with no history, quest points, achievements will get banned quickly, especially if botting in popular areas. Zeah has like 2 times as many trees as the entire RS map, yet nobody uses them. So: more break times, less popular woodcutting areas, more achievements on botted accounts, and your accounts will last super long ^^ Activated double trial time to all users, since there is a new script version out, good luck guys New Update (v57) - Axe upgrading patched, including black axes - Added hardwood trees in fossil island farming patch (teaks, mahoganies) with banking - Fixed walking system, now supports full areas, and locations such as draynor are back to normal again - Added new dropping system, will add a dropdown menu for different drop styles in the next version - (Drop mode): no longer drops any other item except your logs, so ultimate iron men/women can now use the script safely Update will automatically go live within 24 hours, good luck guys Thanks for all your feedback and suggestions, stay tuned for the next update
    1 point
  32. Supports: 1.Low/Mid/High CB 2.Rock cake 3.Automatic potion buying 4.Automatic potion take 5.Automatic dream buy 5.Prayer heal flick(Yay! Supports low CPU mode now!) 6.Automatic overload re-drink 7.Automatic absorption re-drink(When a<=200) Version 1.3: https://www.dropbox.com/s/hklnu63gvqkehav/EasyZone.jar?dl=0 Updates: Fixed bugs. Added a safe spot to walk. Fixed prayer flicking method so that low CPU is supported. Added a anti-ban. Future: Account got banned after 40+ hours using this script.(Reason being is because I updated my script to do a different pattern from my previous versions) Until I can make another NMZ account this will probably be the last update.(I will only re-update script if reports of bugs) ETC. Remember to like and share. If there are any bugs or what so ever please report them and I'll try my best to fix them. --3/18
    1 point
  33. My Discord is Malcolm#7178, when you go to click on my name you can see it here. But this # can be changed. The point of this post is to show people how to get their USER ID, which cannot change. First of all you need to enable developers mode which you can find by following these steps. First, you want to click on your Settings. Once your settings are open you want to go to Appearance. Once you have this tab open you want to scroll down until you find Developer Mode and you want to turn it on like this. Now once you have developer mode enabled you should be able to RIGHT CLICK on anybody like this and copy and paste their USER ID so it will appear. This user ID cannot be changed. Yes, you would still have to add me by entering my name as Malcolm#7178, but this post is really to help avoid imposter scammers. Safe Trading everybody !
    0 points
Γ—
Γ—
  • Create New...