-
Posts
132 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
100%
Everything posted by botelias
-
New first upload, trying to get that Scripter 1 :) After making many private scripts, I've noticed that more isn't always better. Simple scripts seem to have lower ban rates, and are less prone to errors. Here is a very simple goblin killing script for fresh tut-island accounts. It will kill goblins, switch combat styles every few mins if needed (LEVELS DEFENCE! NOT FOR PURES!), and refills food. It features a simple antiban with random mouse movements, right-clicks and breaks. It will stop attacking when there is aprox 1 min left, so it logs out on break-timer without issue. Required: Gear to kill goblins, a scimitar (or weapon with same combat style interface; uses clicks since widgets kept bugging out), and trouts. Start anywhere that webwalking works (basically 95% of the world). Don't use resizable (as with any script). Happy bottin' ! simpleGoblins.jar
-
Pretty sure this update broke skills.getStatic(Skill.SKILL). Previous scripts now SOMETIMES reading incorrectly on this.
-
Hi! I have multiple script projects going, and need to buy small amounts of gold quite frequently. Anybody offer good rates and is available on discord most days around this hour? Buying 5-10m this time. Tend to buy once or twice a week or so. Paying 0.47-0.53$/m Send me PM with your discord name and rate I go first and pay btc. Trusted members only please. Cheers
-
Hi! Looking for 2 clean proxies & 10M gp. Paying btc, going first. Write me PM here with discord name and I'll add you (unless you have 0 rep). Cheers
-
-
Already done. No idea how it broke in the first place though. Ran for over 300h with not a single bug.
-
Added another failsafe, should do the trick. 60-98 str, not a single issue Think I got a temporary disconnect and the script never detected the dream ending. Doing some WC, castle wars, and selling/buying on GE. Then rest acc a while. Are odds low of me getting banned if nothing by tomorrow morning? Thanks!
-
Hey! Been botting an account to maxed str using my own script. It just bugged out and spam-clicked absorption pots in NMZ lobby for somewhere between 10 seconds and 20 minutes. What should I do to lower odds of ban? At 98 str now... Thanks
-
Great! So jagex doesn't ban via local cache? Seems odd that they don't, since it obviously stores account login info on a local level.
-
Hey! Botting an alt using a proxy on osbot with stealth injection. Is it safe to play my main on runelite; same pc at the same time? Or will they risk getting linked & banned via local saved cache? I noticed that runelite has e-mail from bot acc already filled in when started. Cheers
-
What do you need? 90/90/99 (from 70/70/83) How would you like to pay? 07, bitcoin or paypal Would you like to use an MM or go first? first What is your Skype/Discord? botelias#4511 Do you agree to my ToS? Yes
-
Got a link to where I can read about that? Closest I found was using "modules". Is that the same thing? Thanks!
-
Thanks! I'll make sure to implement that once I've got time!
-
Thanks for the tip! I'll look into it. My first javascript from scratch, so the organization is a bit rough indeed I'll make sure to add that option once gui is implemented Not a hard thing to get running, so should come shortly. Just loot for now. If I can find a way to pull item id's from inventory slots, then I could implement all gear/foods. Next thing that will be implemented
-
What free scripts would you like to see on the SDN?
botelias replied to Token's topic in Community Discussion
- -
Unfortunately removed until further notice. Discovered a bug which I do not have time to fix for now. Will re-upload when it gets solved, don't want unnecessary bans to happen Best regards
-
Tried simplifying the trade process as much as possible, removing everything that has to do with declining trade (empty window, slow trade, etc etc). Still hovers over "Decline".
-
Done more research now after coming back from vacation. The issue appears to be 100% random, and unrelated to account. Sometimes it works, sometimes it doesn't. If it however does work, it will keep working as long as client is running. Same if it doesn't work.
-
Hi! I keep getting banned quickly when botting with Stealth Injection, even on things like sand crabs. Using normal botting times; 2-3h/day with long breaks. New IP on every account. I currently use NordVPN as a proxy. The bans are macro:ing major. Would mirror mode help? Does the NordVPN client apply to Runelite as well, or does it only block IP on browsers? Can't find a way to test the IP on runelite.. Thanks for the help! Cheers
-
Hi! Is it possible to switch gear before loading a new script in CLI (or any other bot manager)? Looking to do the following: Task 1: Equip melee gear --> Apa Sand Crabs for ~1h Task 2: Equip HAM gear --> EXCO Clue Solver ~1h Loop: >Random task ~1h >7-10h break Thanks!
-
Great, thanks for the info!
-
Hi! Just bought Exco Clue Solver. If I use it for 1 month, then wait 1-2 months before paying the 5$/month cost, do I have to re-purchase the entire script for 15$? Or can I renew it for 5$ even after monthly cost is missed? Thanks
-
It works, just not always. And when it doesn't work, I have to restart client to get it working again. Read similar issues, but no solutions. It hovers over decline button when it doesn't work.
-
Yeah, solved it with a similar solution! Thanks! Do you happen to know how to insert an item in a trade? ---------------------------------------------------------------- public int onLoop() throws InterruptedException { if (trade.isCurrentlyTrading()) { if (trade.isFirstInterfaceOpen()) { trade.offer(2140,1); } (and a bit more code) ---------------------------------------------------------------- ^ does not work. It does however work if I place "trade.offer(2140,1);" right after the onLoop; ---------------------------------------------------------------- public int onLoop() throws InterruptedException { trade.offer(2140,1); if (trade.isCurrentlyTrading()) { if (trade.isFirstInterfaceOpen()) { } ---------------------------------------------------------------- ^ does work.