TeensyBot - Simple automation and anti-afk bot(undetectable, probably forever) menu

User Tag List

Results 1 to 7 of 7
  1. #1
    bluez31's Avatar Member
    Reputation
    5
    Join Date
    Feb 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    TeensyBot - Simple automation and anti-afk bot(undetectable, probably forever)

    I know it's not really a bot, but it works just like one. I use this for trolling the AH all day and night looking for deals. Auctioneer alerts me when it finds a deal and I have to hit a macro which essesntially clicks buyout for me. I bought a Teensy++(link below) and a microphone(link below) and wrote a little code to listen for the auctioneer doorbell sound, and to hit the '=' key to trigger the macro. It also will jump the character at a random interval(currently 8-10 minutes).

    I know this isn't cheap, but it's fairly effective and safe. The Teensy isn't running any code on the computer when it runs. Everything is kept on the chip and it literally is just telling the computer that it's a keyboard. The code I use is below. It's pretty easy to follow.

    Not terribly useful for most people, I know. If I were able to get WoW data externally somehow(packet sniffing & decryption?) I could pump serial commands to this and do some really nifty stuff, but unfortunately I don't know if that's possible.

    Also I should note for the electronic faint of heart there is no soldering or anything like that in this setup. It was all pretty much plug and play. Also, if there's any actual interest in this I will write up a whole guide on how to configure/program it.

    Thanks.

    Code:
    int analogPin = 0; // Audio from microphone is input on this pin
    int val = 0; // value of the read on pin 0
    long previousTime = 0; // will store last time it jumped
    long interval = 0; // interval at which to jump
    
    void setup() // This is run at the beginning of the execution
    {
      randomSeed(analogRead(0));
      interval = random(480000,600001); // Initially sets interval to a random value from 8 to 10 minutes in miliseconds
    }
    
    void loop()	// This is run infinately.
    {
      val = analogRead(analogPin); // Set val to the value of analogPin(this is the microphone pickup)
      if (val > 700 || val < 300) {	 // Check the level to see if there's some input going on(mic sits anywhere from 400-600 normally
       Keyboard.print("=");	// Simulate a keypress of '='
      }
      unsigned long currentTime = millis(); // Setting the var currentTime to the ammount of milli's that the board has been on
      if(currentTime - previousTime > interval) { // If the time since the last jump is greater than the interval process below code
        previousTime = currentTime; // Set the previousTime to current time, as we're jumping now
        Keyboard.print(" "); // Simulates a keypress of ' '
        interval = random(480000,600001); // Re-randomizes the interval so you aren't always jumping at the same int
      }
    }
    PJRC Store Teensy I use. For anti AFK you could get away with the regular teensy, and not the ++... but the ++ has analog inputs for things like microphones.

    SparkFun Electronics - Breakout Board for Electret Microphone Simple microphone board

    Teensyduino - Add-on for Arduino IDE to use Teensy USB development board - The software to program the Teensy can be found here.
    Last edited by bluez31; 05-04-2010 at 09:51 AM.

    TeensyBot - Simple automation and anti-afk bot(undetectable, probably forever)
  2. #2
    richardsonc's Avatar Member
    Reputation
    7
    Join Date
    Mar 2007
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good find mate, but no one will likely go buy something to do what they can do without buying it. XD

  3. #3
    thefarmer's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty cool acctualy,

  4. #4
    BYSCUIT's Avatar Contributor
    Reputation
    82
    Join Date
    Mar 2007
    Posts
    167
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nothing is undetectable.
    Last edited by BYSCUIT; 05-06-2010 at 09:58 PM.

  5. #5
    bluez31's Avatar Member
    Reputation
    5
    Join Date
    Feb 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BYSCUIT View Post
    Nothing is undetectable.
    Please, tell me how it's detectable. It's essentially as good as a hired monkey hitting buttons on my keyboard for me. There's nothing at all happening computer side. Everything is external.

  6. #6
    colincancer's Avatar Active Member
    Reputation
    63
    Join Date
    Dec 2007
    Posts
    509
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty cool, but the vast majority of botters don't get banned because their bot is detected; they get banned because someone reports them... or it looks like a "hired monkey" is hitting buttons on the keyboard for them (lol).

    You always need to bot smart or you're probably going to get banned regardless of whether the bot your using will be undetected forever or not. :P
    #JODYS'WATCHiN

  7. #7
    bluez31's Avatar Member
    Reputation
    5
    Join Date
    Feb 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Truth. It just makes me feel safer I've done some more tweeks to mine to type out some generic BS to people who whisper me. I've been looking into the G15 software as well to see if I can emulate the Teensy as a G15 with an LCD display. I don't know if it'd be terribly useful... but it could atleast know when I'm dead and log me out then. Pretty helpful for what I use it for

Similar Threads

  1. Anti-AFK Bot for Mac using Automator
    By maultron in forum World of Warcraft Bots and Programs
    Replies: 28
    Last Post: 03-01-2011, 08:16 PM
  2. Simple Yet affective ~Anti AFK Bot~
    By Staunton in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 08-22-2009, 10:18 PM
  3. [Mac] Anti-AFK Bot, undetectable and unbannable. No DL's
    By Viper998 in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 03-24-2008, 12:22 PM
  4. Pirox Anti-Afk Bot | Pics, Tips and Help
    By Rectal Exambot in forum World of Warcraft Guides
    Replies: 20
    Last Post: 01-25-2008, 10:14 AM
  5. new undetectable anti-afk bot
    By twitch101 in forum World of Warcraft Bots and Programs
    Replies: 25
    Last Post: 11-04-2006, 07:32 AM
All times are GMT -5. The time now is 03:43 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search