Everything posted by mitsuki
-
multiple classes?
I already own script factory, I'm trying to start writing my own scripts properly. Just wondering if what I asked was possible, that's all
-
multiple classes?
Can I use multiple classes for a script? What I essentially want to do it do a task until a condition is met, and then perform a different task, within a different java class in the same script. is this possible? and if so, how do I switch to the next class within my code? Sorry about the question, i'm a java noob xD
-
How do I use the Player methods?
Thank you so much dude
-
How do I use the Player methods?
How do I use the methods for: Player? I've tried using things like: boolean enemyPlayer = Player().getSkullIcon(); int enemyCombatLvl = Player().getCombatLevel(); But I keep getting: Method call expected. Anyone know what I'm doing wrong?
-
Khal Woodcutter
@Khaleesi Great script! The only improvement I can think of would be a muling feature, but other than that, this script is perfect. i've had an account chopping yews for 48 hours straight
-
How to walk a random predefined path?
Is there any other way to declare the path before the onstart or onloop? I currently just add all of the positions of the path in onStart with: @Override public void onStart() { log("Let's get started!"); pathToSewer.add(new Position(3246, 3433, 0)); pathToSewer.add(new Position(3246, 3450, 0)); pathToSewer.add(new Position(3238, 3457, 0)); } But is there any other way to declare it outside of the loops? Or is adding each position on startup the best method?
-
iOrber
First time using the script and got a perm ban after running for an hour and a half on a non botted account with 40+ in all stats, and about 60qp in mirror mode. Will try again on an account with only 66 magic. Hopefully it doesn't meet the same fate The script didn't seem to eat anything either
-
How to walk a random predefined path?
Do I need to spread the positions out even more? They are already only just visible by zooming all the way out
-
How to walk a random predefined path?
List<Position> pathToSewer = new ArrayList<>(); @Override public void onStart() { log("Let's get started!"); pathToSewer.add(new Position(3246, 3433, 0)); pathToSewer.add(new Position(3246, 3450, 0)); pathToSewer.add(new Position(3238, 3457, 0)); } public int onLoop() throws InterruptedException { if (varrockBank.contains(myPlayer()) && !getInventory().isFull()) { log("Walking to sewer"); getWalking().walkPath(pathToSewer); } return random(2000, 5000); } So i'm using the walkPath function, but basically, it walks my player to the first position on the path, and even once I reach the tile, the script clicks on the exact tile to ensure I have moved to it. It doesn't do this for any other position of the path? Anyone know what could be causing this?
-
How to walk a random predefined path?
Thank you for the help guys! Yeah, I appreciate that, just thought that it couldn't hurt to make my script seem more random, right?
-
How to walk a random predefined path?
So I understand how to declare a path, and walk the path. What I'm trying to do is declare 3 paths that all go to the same location, but using different tile combinations, and then make my script randomly select a path to take, making it more random, and less boy like. Has Java got a built in random function that I can tell it to return a random between 0 and 2, and then make it walk the path correlating to that number? Sorry if I'm being confusing
-
Stealth Builder
I switched worlds, and it seems to be working xD
-
Stealth Builder
I just looked at the error, and it doesn't seem to be picking up the varrock tabs
-
Stealth Builder
in mirror mode, it keeps just buying varrock tele tabs when stocking my bank and all for the first time
-
Khal AIO Agility
It doesn't seem to be picking up marks at draynor. Mirror mode
-
Perfect Magic AIO
yeah, all good. Cheers dude!
-
Perfect Magic AIO
I press start, select this script, and it does nothing. Never loads, and doesn't even recognize that a script has been ran on the client? It's worked fine for me before, and the logger doesn't even output anything? Any Idea on what I can do?
-
Wine Telegrab
It already is set to hidden. I'll try turning it back on, and hopefully it sorts itself out. I'll keep you posted
-
Wine Telegrab
@Camaro The bot just opens the settings tab, and doesn't do anything else. Is this issue still not fixed? I'm using mirror mode
-
How do I use an object at a certain location?
Thank you dude, any chance you can explain what the code is doing so i can understand fully using comments? No worries if not man
-
How do I use an object at a certain location?
I'm trying to mine a rock at a specific location, but can't seem to work out how to do it? I assumed it would be something along of lines of getObjects().closest("Rock") at location (1334, 1553); But I can't work out how to add a location to the object. Do I need to make my own method or something to check the location? like: public boolean rockLocation() { if (getObjects().closest("Rock").exists && Location == (1334, 1553)) { return true; } } I just don't know how to check the location. Cheers guys
-
Khal Mort Myre Fungus
Tried restarting the client, but it only seems to happen every now and then. The ring of duelling tele to the enclave seems to fix it for at least an hour at a time, and considering that i'm suiciding until tomorrow morning, i'm sure it will suffice. Cheers for the quick response, and I suggest everyone browsing this thread doesn't bother with a trial, and just purchases the script, as its made me way more than my investment already. cheers, Mitsuki
-
Perfect Crafter AIO
Hey dude, good script like the others I got from you. My only improvement, and a request from myself if at all possible, but could you put how many items have been processed on the paint? Like if its made 8000 gold necklaces, or tanned 12000 cowhides? Other than that, it is the perfect goldfarming script for new goldfarmers, and seasoned ones, due to the auto restocking from the ge, and the newly introduced beta muling system. Really enjoy the script! Cheers
-
Khal Mort Myre Fungus
I'm using mirror mode, and it keeps getting stuck every now and then. When it goes through the gate to the swamp, sometimes it collects a couple mmf and then breaks, other times it does it instantly. It walks back to the gate from the swamp, and stands there until I use the ring of duelling to teleport back to the enclave. The status of the script says: going to GE. I haven't selected restocking or anything, but its probably the mm client bugging it, as it was working fine on my stealth injection client. Other than that, great script, it has made me over 100m now
-
The script works, but using the range takes too long, and the getwidget only happens the second time it appears
wasted advertisement here mate, I already own it 😛 and it is really good, I just want to actually learn how to write scripts myself, as script factory doesn't allow you to export the scripts