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()...
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...