Czar Posted March 12, 2015 Share Posted March 12, 2015 (edited) WTF.. a client restart solved the npcs.getall() there are just here for reference now @Override public boolean validate() throws InterruptedException { // return !ctx.getInventory().contains(ctx.getMyFood()); if (ctx.atFightArea()) { ctx.log("Not at fight area lel: "+(ctx.getInventory().contains("Salmon"))+"."); return !ctx.getInventory().contains("Salmon"); } else { ctx.log("At fightarea, no layout"); return !ctx.hasLayout(); } } Excuse the messy parts, it doesn't detect salmon whatsoever: and for npcs: public void refreshList() { listModel.removeAllElements(); added.clear(); for (NPC n : ctx.getNpcs().getAll()) { if (!n.hasAction("Attack")) { continue; } // if (!inAdded(n) && !inAdded2(n)) { CzarNPC npc = new CzarNPC(n.getName(), n.getLevel()); npc.setPosition(n.getPosition()); added.add(npc); ctx.log("Added 1 : " + n.getName() + " - (" + n.getLevel() + ")"); listModel.addElement(npc); // } } } Again, excuse the messy code, nothing appears in mirror client, yet both these features work in the normal client mode. (after clicking refresh, no npcs pop up in mirror client) Edited March 12, 2015 by Czar Link to comment Share on other sites More sharing options...
AresScripts Posted March 12, 2015 Share Posted March 12, 2015 if you turn on entity hover debug and hover over an entity it doesnt recognize that there is an entity there.(for me atleast) Link to comment Share on other sites More sharing options...
Joseph Posted March 13, 2015 Share Posted March 13, 2015 if you turn on entity hover debug and hover over an entity it doesnt recognize that there is an entity there.(for me atleast) i was told it was fixed on the newest version that came out yesterday. I havent had a problem with it yet Link to comment Share on other sites More sharing options...
Developer Maxi Posted March 14, 2015 Developer Share Posted March 14, 2015 Is this bug still prevalent on v1.03? 1 Link to comment Share on other sites More sharing options...
Czar Posted March 14, 2015 Author Share Posted March 14, 2015 Yeah, a client restart sometimes solves it though Link to comment Share on other sites More sharing options...