Jump to content

mitsuki

Lifetime Sponsor
  • Posts

    121
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by mitsuki

  1. 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
  2. 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
  3. Thank you so much dude
  4. 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?
  5. @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
  6. 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?
  7. mitsuki

    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
  8. Do I need to spread the positions out even more? They are already only just visible by zooming all the way out
  9. 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?
  10. 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?
  11. 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
  12. I switched worlds, and it seems to be working xD
  13. I just looked at the error, and it doesn't seem to be picking up the varrock tabs
  14. in mirror mode, it keeps just buying varrock tele tabs when stocking my bank and all for the first time
  15. It doesn't seem to be picking up marks at draynor. Mirror mode
  16. yeah, all good. Cheers dude!
  17. 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?
  18. It already is set to hidden. I'll try turning it back on, and hopefully it sorts itself out. I'll keep you posted
  19. @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
  20. 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
  21. 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
  22. 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
  23. 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
  24. 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
  25. 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
×
×
  • Create New...