

aeikonic
Lifetime Sponsor-
Posts
48 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by aeikonic
-
Just something I noticed is the hover next seems to hover last, so it seems really buggy if doing more than 2 rocks. Also mine in order doesn't seem to do anything(?), is there a way to set the order? Really great mining script though, definitely the best one I've tried
-
Hey Khal, just wanted to note something here. If you queue a spell with the wrong spellbook, could you have it logout or skip that task? Totally spaced out setting something up and put a high alch task on at the end of some lunar spell tasks and it stayed logged in overnight trying to find the high alch spell on the wrong spellbook rather than logging out when it couldn't find/cast the spell.
-
Wow, I never noticed that lol is that new text they added recently?
-
What's everyone doing while we wait for the update
aeikonic replied to NB6675's topic in Spam/Off Topic
Wasn't it fixed like 7 hours ago? lol -
What's everyone doing while we wait for the update
aeikonic replied to NB6675's topic in Spam/Off Topic
What update? -
mb, it showed up for me. updated with imgur version
-
14 QP Cook's Assistant Doric's Imp catcher Restless Ghost Rune Mysteries Sheep Shearer Vamp slayer Witch's Potion Client of Kourend Death Plateau Hazeel Cult and Waterfall Quest
-
I wouldn't use stealth for anything other than some suicide farms ;l
-
Game updated, mirror mode needs updated now. Just patience
-
Think it's 'cause of the update
-
What do you guys do after one of your bots gets hit with a 2-day?
aeikonic replied to Ranarra's topic in Botting & Bans
Depending on stats, either sell it cheap or suicide it for the most part -
I only started about a month ago, but I've only had one 2 day ban (forgot to enable breaks). Running 10 bots atm doing different things.
-
Could I get a trial?
-
Is there a way to slow down the mouse / actions? Was doing curse splashing and it was trying to cast faster than it could actually cast. Had it set for 1500 casts but it only actually casted about 1000 before stopping. Seemed kind of sus too with how fast it was trying to cast Also, any chance you could make an "afk mode" for doing ring enchants? Like it casts 1 then mouses off screen until they're all done auto casting?
-
Climbing Boots Buyer [250k/h][Low Requirements Money Making]
aeikonic replied to aeikonic's topic in Money Making
Can you screenshot your inventory and the log? -
Climbing Boots Buyer [250k/h][Low Requirements Money Making]
aeikonic posted a topic in Money Making
Very simple script. Buys and banks Climbing boots. I'm new so LMK if this breaks any rules. Requirements: Death Plateau quest Ring of Dueling (and Ring of Dueling (8) in the bank for when the original breaks) Games Necklace (and Games Necklace (8) in the bank for when the original breaks) 1k+ coins Start up: Can be started anywhere with a Ring of Dueling equipped. DOWNLOAD Video: https://gfycat.com/rapidpinkhake Pics: -
Howdy. Been botting for a while writing my own AHK scripts. Hoping to learn some stuff here and start making more complex scripts. Just curious, what do I have to do to get the scripter rank?
-
public int onLoop() throws InterruptedException { if(getDialogues().inDialogue()) { if(getDialogues().isPendingContinuation()) { getDialogues().clickContinue(); } else if(getDialogues().isPendingOption()) { getDialogues().selectOption(1); } } return random(1000, 1500); I cut out the part where it talks to the NPC, but this is the gist of it. After like 5 minutes the dialog click through slows down to doing the interaction like once every 5-10 seconds. If I pause and unpause the script it goes back to regular speed. Just trying to figure out why it slows down so much. Is there something wrong with this?
-
Yeah the IDE was throwing me for a loop because it told me if I didn't have onLoop in Fishing (when it was extending Script) I'd have to make it abstract, which then told me I couldn't instantiate it on the upper level script. Had me all confused but figured it out. Got a few basic scripts working now though
-
Having an issue where it just crashes the bot. Just trying to get it set up, so there isn't much code, but the gist is like this: import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import skills.Fishing; @ScriptManifest(name = "Testing", author = "Aeikonic", info = "Just a test", version = 0.1, logo = "") public class testBot extends Script { protected Fishing fish; @Override public final int onLoop() throws InterruptedException { fish.goFishing(); return random(150, 200); } } The fishing script is declared like this: public abstract class Fishing extends Script { Is that the issue or is it how I'm calling it in the upper level script? The fishing bot works when turned into a normal script. How do I call it / activate it from another script? EDIT: Updated Fishing to an Event: public class Fishing extends Event { Calling it like this: protected Fishing fish = new Fishing(); @Override public final int onLoop() throws InterruptedException { fish.execute(); return random(150, 200); } Getting a NullPointerException though which says it's at this line: private boolean canFish() { return getInventory().contains("Small fishing net"); } Wasn't getting it when not pulling the script in as an event though, so a bit confused... not sure if I'm still pulling it in wrong or if running it as an event means I need to recode parts of it. EDIT AGAIN: Got it, had to run execute(fish);