Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. G

    Question Script just idles after worldHop.

    So i have this little mining script which supposed to hop worlds if there is no rocks available. At the start everything is ok it mines all rocks and when there is no rocks left it hops world. And here the problem starts. It doesnt do anything, the script is still runing but account just idle...
  2. G

    Question How to count items in inventory?

    I need to check how many specific items in inventory something like that: if( item == 27){//do stuff} I am pretty sure it can be done i just dont know what is ...the first line i have no idea how to call it :( But it should be something like:public SpriteItem item = Inventory.getItems("Logs"); I...
  3. G

    Question How to define is ore depleted or not?

    So i looked at open source miners(2 of them becouse 1 is just xml and ui file) and they just check if ore is !=null, isVisible, within area and if it has options to mine but how to check if its already mined or not? I used developer tool but couldnt find any difference between depleted and good...
  4. G

    Question PredefinedPath Just clicks on o same coordinate

    So i have this path: Path lala = PredefinedPath.create(new Coordinate(2852, 2957, 0), new Coordinate(2844, 2963, 0), new Coordinate(2832, 2969, 0), new Coordinate(2828, 2987, 0)); lala.step(); It walks 1 coordinate then just starts spamming second one and doesnt go to 3rd one. Where could be...
  5. G

    Resolved Trying to press ESC key gives error

    So i try to close bank with this: if(Bank.isOpen()) { Keyboard.pressKey(Keyboard.Key.KEY_ESCAPE); } But i get this error: Error:(58, 39) java: com.runemate.game.api.hybrid.input.Keyboard.Key is not public in com.runemate.game.api.hybrid.input.Keyboard; cannot be accessed from...
  6. G

    Bug Unable to write native library 'attach' to the file system [Fixed]

    So i am running RM from IntelliJ -sdk mode and iget this: Unable to write native library 'attach' to the file system. java.lang.UnsatisfiedLinkError: C:\Users\V3l3n4s\RuneMate\resources\attach.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform I have 32-bit JAVA and 64-bit JDK. I think...
  7. G

    OSRS Do Runescape offences expire?

    So i got banned (for 2 days) on my account which i botted alot but also was doing quests (111 quest points). If i get cought again i will be perma banned. My offences meter is green but at half way ... so my question is do it ever goes back? Can i wait like half year and get 2 day ban again?
  8. G

    Question Error when opening RM in IntellJ

    So when spectre came out i cant run RM in IntellJ is something about about Run configurations changed? I still use : com.runemate.Boot and it produces error: Exception in thread "main" java.lang.ClassNotFoundException: com.runemate.Boot at...
  9. G

    Resolved ChatDialog press continue button OSRS

    So i want to press continue button in OSRS i try to do this like this: // Creating method public static InterfaceComponent getContinueButton(){ } //calling it getContinueButton(); But it dont work, i need somekind return in method. Help me pl0x :D
  10. G

    Question Need some logic

    I try to make that it would teleport only when inventory is full and he is at bank area i have area in my code but it teleports me no matter where i am.
  11. G

    Question How to walk efficiently?

    So i use walking like this i know this is a wrong way of using it, still it gets me where i want but it wastes some time. It use vey large steps no matter that there is lots of coordinates given and it keeps walking back like this: Good way: from A to point E How it walks for me: A-B-C-B-C-D-C-D-E
  12. G

    Question How to do things till full inventory? In Looping script

    So lets say i am woodcutting if i want full inventory i just use this thing in TaskScript : But i cant use return in Looping script? Is there any way to change this code so i can put it in Loopingscript?
Top