Botre Posted April 20, 2015 Share Posted April 20, 2015 (edited) public class AutoPlayerResponder { private final Script script; private final int cooldownSeconds; private Map<PlayerMessageContentType, MilliTimer> cooldownMap; public AutoPlayerResponder(final Script script) { this.script = script; cooldownSeconds = 180; cooldownMap = new EnumMap<PlayerMessageContentType, MilliTimer>(PlayerMessageContentType.class); } public void respond(String message) { PlayerMessageContentType type = PlayerMessageInterpreter.getInstance().getContentType(message); if (type == null || (cooldownMap.containsKey(type) && cooldownMap.get(type).getElapsedSeconds() < cooldownSeconds)) return; String response = null; switch (type) { case BOT_ACCUSATION: response = "beep boop boop"; break; case BOT_QUERY: response = "beep boop boop yes beep boop"; break; case SKILL_QUERY: Skill skill = PlayerMessageInterpreter.getInstance().getSkillMention(message); response = script.getSkills().getStatic(skill) + ", beep boop boop"; break; case TOTAL_LEVEL_QUERY: response = BotreMethodProvider.getMyTotalLevel(script) + " ...beep boop boop"; break; } if (response != null) { script.getKeyboard().typeString(response, true); cooldownMap.put(type, new MilliTimer()); } } } Edited April 20, 2015 by Botre 4 Quote Link to comment Share on other sites More sharing options...
Jamez Posted April 20, 2015 Share Posted April 20, 2015 Lmfao case BOT_QUERY: response = "beep boop boop"; Quote Link to comment Share on other sites More sharing options...
Joshey Posted April 20, 2015 Share Posted April 20, 2015 Lmao Quote Link to comment Share on other sites More sharing options...
Fade Posted April 20, 2015 Share Posted April 20, 2015 Lmao, I wonder if this would actually reduce reports Quote Link to comment Share on other sites More sharing options...
Apaec Posted April 20, 2015 Share Posted April 20, 2015 lol hashmap Quote Link to comment Share on other sites More sharing options...
Botre Posted April 20, 2015 Author Share Posted April 20, 2015 lol hashmap fixed Quote Link to comment Share on other sites More sharing options...
CrazyKidBro111 Posted April 20, 2015 Share Posted April 20, 2015 Curious if this actually works lolol. Quote Link to comment Share on other sites More sharing options...
Mikasa Posted April 20, 2015 Share Posted April 20, 2015 How I've been evading all dem bans Stopped botting Quote Link to comment Share on other sites More sharing options...
Botre Posted April 20, 2015 Author Share Posted April 20, 2015 How I've been evading all dem bans Stopped botting beep boop boop yes beep boop boop Quote Link to comment Share on other sites More sharing options...
Apaec Posted April 20, 2015 Share Posted April 20, 2015 fixed pls go home Quote Link to comment Share on other sites More sharing options...
Botre Posted April 20, 2015 Author Share Posted April 20, 2015 pls go home y u break my hard? Quote Link to comment Share on other sites More sharing options...
Apaec Posted April 20, 2015 Share Posted April 20, 2015 y u break my hard? u drive me to an early gravy Quote Link to comment Share on other sites More sharing options...