-
Posts
619 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
100%
Everything posted by FushigiBot
-
Make the script BREAK the event when in combat. Add this to all events. Run the "walk to safespot" event on a different thread.
-
Nice bump. Mirror is bundled with the OSBot client (The jar). Make sure you have JRE8 installed and it's set as default/path. Otherwise the option will be grayed out.
-
Welcome to botting. Perma bans happen more often during Prime events. F2p Accounts generally get a perm on the first strike. This guide might help you reduce bans, but they will still happen regardless. Cheers
-
Bans mainly come from other flags if the script works well (Eg, doesn't get stuck, etc.) I know some scripters, besides Khal, that put a lot of effort on their scripts. I see where you are coming from, though, and I do have to agree that more active scripters are needed atm.
-
It is not antagonistic. I'm being realistic. -People who know the game struggle to start and keep a farm going. -Most people quit before they even make back their investment. ^^ These are facts and things I see on a monthly basis. I make and sell scripts, profiting off new botters. I could just encourage the guy and make a sale while I'm at it. This is just me, with years of experience, providing what I believe is some good advice: Learn the game before you start botting.
-
@forumaccount you will be making scraps and he would still need to learn how to get past tutorial, initial bans, gold's worth, etc etc etc. Not worth it unless you live in a country where you earn like $20 a month. Yeah most do, and it's up to you to make sure you understand what those requirements are. Once you have something going on, then you have to learn how to mule, offload, etc. The learning curve can be steep for those who know the game, so I'd say to play the game a bit before jumping into botting.
-
It's extremely difficult to bot osrs it without knowing the game. How will you know what to bot? What goals to set? The requirements for what you want to bot? etc etc etc.
-
It shows only when launched with CLI. Nah, there probably is but it doesn't show on the top unless you launch it with CLI. At least that's how it works on my end. Edit: The most recent client version does display it regardless of CLI. You have to tick the proxy checkbox and then select the proxy.
-
How exactly do i start osbot+proxy+ a script with CLI?
FushigiBotreplied to ez11's topic in General HelpNice bump. It's usually in the script post. If it isn't, ask the dev. -
OSBot will only work well with JRE8. Try this: 1. Remove all forms of java from your PC. 2. Download the offline installer from here and install it: https://www.java.com/en/download/manual.jsp
-
how many scritpts have you bought in total?
FushigiBotreplied to cptnox1993's topic in Spam/Off TopicAlmost all lmao. -
When to start botting again after a server update?
FushigiBotreplied to Sublimeqt's topic in RunescapeOnce the bot is back up. -
This snippet contains checks that you can call anywhere within the script. It basically saves you time when building a script as it contains a template for many things. It requires some knowledge of SF or programming, though.
-
Those webwalker updates got me like
-
Mirror is less detectable on paper but some time ago jagex has been able to detect mirror more than stealth even without botting. It seems to has to be with how/when the client hooks or the login iirc. The devs were looking at it last I heard.
-
This won't do anything to reduce bans. It's a flag system. In game location, client, ip, etc. are the main flags. If the script is fairly well made, the only thing that could potentially reduce bans is choosing uncommon bot locations.
-
Trying to get amount of Ground items from an area or position
FushigiBotreplied toFushigiBot's topic in TutorialsIt worked. Thanks! public void shouldPickUpTinderboxes() throws InterruptedException { List<GroundItem> allTinderboxes = getAllTinderboxes(); int emptyInventorySlots = inventory.getEmptySlots(); if (!boolShouldPickUpTinderboxes && !boolShouldSpeakToWiseOldMan && !boolShouldBank && stringMethodSelector.contains("tinderbox_picker") && areaDraynorVillageWiseOldManFrontOfTinderboxBookshelf.contains(myPlayer()) && !allTinderboxes.isEmpty() && allTinderboxes.size() >= emptyInventorySlots) { boolShouldPickUpTinderboxes = true; log("Attempting to pick tinderboxes."); } if (boolShouldPickUpTinderboxes) { if (boolShouldSpeakToWiseOldMan || boolShouldBank || !stringMethodSelector.contains("tinderbox_picker") || !areaDraynorVillageWiseOldMan.contains(myPlayer()) || allTinderboxes.isEmpty() || getInventory().isFull()) { boolShouldPickUpTinderboxes = false; log("Tinderboxes picked."); } } } public List<GroundItem> getAllTinderboxes() { return getGroundItems() .getAll() .stream() .filter(g -> g.getName().equals("Tinderbox") && areaDraynorVillageWiseOldManFrontOfTinderboxBookshelf.contains(g.getPosition()) && getMap().canReach(g)) .collect(Collectors.toList()); } -
Trying to get amount of Ground items from an area or position
FushigiBotreplied toFushigiBot's topic in TutorialsYikes, thanks. Will try that now. -
Trying to get amount of Ground items from an area or position
FushigiBotposted a topic in TutorialsCan't seem to get this working correctly. The value (groundTinderbox) always seems to come back as 1 no matter how many ground items there are as long as it isn't 0. I'm almost certain it could be because it isn't a stackable item, but not sure. Here is the snippet: public void shouldPickUpTinderboxes() throws InterruptedException { GroundItem groundTinderbox = groundItems.closest(areaDraynorVillageWiseOldManFrontOfTinderboxBookshelf, "Tinderbox"); int emptyInventorySlots = inventory.getEmptySlots(); if (!boolShouldPickUpTinderboxes && !boolShouldSpeakToWiseOldMan && !boolShouldBank && stringMethodSelector.contains("tinderbox_picker") && areaDraynorVillageWiseOldManFrontOfTinderboxBookshelf.contains(myPlayer()) && groundTinderbox != null && groundTinderbox.getAmount() >= emptyInventorySlots) { boolShouldPickUpTinderboxes = true; log("Attempting to pick tinderboxes."); } if (boolShouldPickUpTinderboxes) { if (boolShouldSpeakToWiseOldMan || boolShouldBank || !stringMethodSelector.contains("tinderbox_picker") || !areaDraynorVillageWiseOldMan.contains(myPlayer()) || groundTinderbox.getAmount() == 0 || getInventory().isFull()) { boolShouldPickUpTinderboxes = false; log("Tinderboxes picked."); } } } -
Love seeing "web walker links" in upates.
-
I have 6 day proggies with barely any breaks, so breaks and looking like a "human" is a least important flag, if important at all. Bans highly depend on which and how many flags you trigger, and whether the in game location is being "watched" at the moment. We are at higher than usual banrates atm as well. Good luck botting and never bot on an account you care about.
-
Human breaks and bedtime doesn't do much to curve bans. I can run accs without breaks for days without a ban. It's one of the least important flags. Flag priority usually changes but client is usually at the top. We are currently at high banrates for new accs accross all clients so just watch out for that.
-
Bans started again with more frequency about 2 weeks ago but bots went on for months with minimal bans.
-
There have been minimal bans accross all botting platforms, which caused an overflow of gp.
-
@Zackaery