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. F

    Resolved [solved] filter more than 1 ID ?

    hey @auxi , got it to work with final Npc Mob = Npcs.newQuery().filter(npc -> npc.getId() != 1234 || npc.getId() != 1234 ).results().nearest(); but thanks for all your 4(!) solutions. Option 4 is my fav, :) and thats what im doing in my free time atm. im coding in Runemate since like 1 Week...
  2. F

    Resolved [solved] filter more than 1 ID ?

    thx so far - is there an option for something like " .!actions("Talk-to") " so i can blacklist the one that i can talk to ? the mobs that i try to filter got the same name, same level, nearly same interactions, same colors etc. so thats the tricky part ^.^ hmm, sad that the bot stucks on...
  3. F

    Resolved [solved] filter more than 1 ID ?

    hey guys, im trying to filter NPCs with IDs but im stuck :/ i can filter 1 ID. but i need to filter 2 Id´s working: (filtering/blacklisting the mob with ID 1234) //private int blacklist[] = {1234, 5678}; final Npc Mob = Npcs.newQuery().filter(npc -> npc.getId() != 1234 ).results().nearest()...
  4. F

    Question Simple Fletching

    hey, im new to this here, but still want try to help you :) i would try something like: final SpriteItem logToFletch = Inventory.newQuery().names("logs").results().first(); if(logToFletch != null) { logToFletch.interact("Craft"); //more code balblabla...
  5. F

    Resolved [SOLVED] black vs white sheep - how to differentiate

    would be an option, but how do i Npcs.newQuery() ids ? there is only an .getId() no .ids() as filter like in other bot API´s i programmed befor
  6. F

    Resolved [SOLVED] black vs white sheep - how to differentiate

    Hey guys, first, im kinda new to RuneMate and his Development Tool. atm im just playing around with RuneMate and writing my first own Bot on Runemate. For the start i wanted to write a small bot that could shear sheeps and bank the wool in Lumbridge. But for some reason im unable to...
Top