September 30, 20169 yr Hello guys, I have created this thread to ask all of you, What script does osbot needs ? Please feel free to request, Do not hesitate. All comments and suggestion/requests are allowed! Best regards, Mr Pro Pop. Edited September 30, 20169 yr by Mr Pro Pop
September 30, 20169 yr something that stops me from logging out at sancrabs so i can reagro inclient autoclicker working tele tab scipt
September 30, 20169 yr aio gwd If I bothered to learn npc filtering for npcs that aren't in combat, I'd start on a free AIO GWD hint hint @@Token
September 30, 20169 yr Agility pyramid, devoted safe cracker, rimmington gilded script with phials support, waterfall quester
September 30, 20169 yr If I bothered to learn npc filtering for npcs that aren't in combat, I'd start on a free AIO GWD hint hint @@Token List<NPC> noobs = npcs.getAll().stream().filter(n -> !n.isUnderAttack()).collect(Collectors.toList());
September 30, 20169 yr Author If I bothered to learn npc filtering for npcs that aren't in combat, I'd start on a free AIO GWD hint hint @@Token Here is one, I hope it helps and sorry for my last post! public void Available() { List<NPC> npc = npcs.getAll(); for (NPC n : npc) { if (!n.isUnderAttack() && n.getHealthPercent() > 0) { npc.add(n); log(n.getName()); } } }
September 30, 20169 yr List<NPC> noobs = npcs.getAll().stream().filter(n -> !n.isUnderAttack()).collect(Collectors.toList()); this is why i'm going to have your kids Here is one, I hope it helps and sorry for my last post! public void Available() { List<NPC> npc = npcs.getAll(); for (NPC n : npc) { if (!n.isUnderAttack() && n.getHealthPercent() > 0) { npc.add(n); log(n.getName()); } } } thx for the help, fam gonna go with token's method tho cause we're having babies soon
September 30, 20169 yr Author this is why i'm going to have your kids thx for the help, fam gonna go with token's method tho cause we're having babies soon @ As you like, Here is an improvement, List<NPC> npc = npcs.getAll(); for (NPC n : npc) { if (!n.isUnderAttack() && n.getHealthPercent() > 0) { npc.add(n); for (NPC e : npc) { e.interact("Action"); } } } } Edited September 30, 20169 yr by Mr Pro Pop
Create an account or sign in to comment