_keySpam: Timed Keys Sender v1.1 menu

User Tag List

Page 4 of 5 FirstFirst 12345 LastLast
Results 46 to 60 of 73
  1. #46
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know any. If buying a Mac was even worth the price I'd code one for it. But I can't find any good reason to buy one as every experiences I had with them made me hate the brand.

    _keySpam: Timed Keys Sender v1.1
  2. #47
    bts0uth's Avatar Active Member
    Reputation
    31
    Join Date
    Feb 2008
    Posts
    224
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just leveled a JC and started using this. So, no one has been banned for using this? It's a great little program ,exactly what i wanted

  3. #48
    necrofurion's Avatar Private
    Reputation
    1
    Join Date
    Apr 2011
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi i use this program to stop going afk while waiting for rare spawns. i was just wondering is there anyway to make a macro to simulate a left mouse click and have the program click and refresh the spell every 30 seconds for example

    /cast [button:1] !Eagle eye

    Basically i wanna keep looking at 2 spawn points constantly

  4. #49
    DeathByDawn's Avatar Private
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Am i doing something wrong? I can't seem to make the bot prospect with my macro on the "1" of the action bar.
    All it does is spam 11, 11, 11 etc

    Any help?

    EDIT: NM, got it working.
    Last edited by DeathByDawn; 04-05-2011 at 11:31 AM.

  5. #50
    Seifer's Avatar Site Donator
    Reputation
    129
    Join Date
    Apr 2007
    Posts
    270
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Made a small console app a while ago which did exactly this in a few lines of code. Figured I'd throw it in here rather than opening another redundant thread:

    Code:
    class Program
        {
            static void Main(string[] args)
            {
                Console.Write("Sleep time (ms): ");
                var i = int.Parse(Console.In.ReadLine());
                Console.Write("Key to send: ");
                var k = Console.In.ReadLine();
    
                Console.WriteLine("Pressing " + k + " on a " + i + " millisecond interval.");
    
                while (true)
                {
                    SendKeys.SendWait(k);
                    Thread.Sleep(i);
                }
            }
        }
    Yes, it will only send keystrokes to the currently active window.

    Edit: Binary link added.

    http://aevitas.us/files/KeySpam.zip (5kb clr exe)
    Last edited by Seifer; 04-05-2011 at 11:41 AM.

  6. #51
    Eliteplague's Avatar Master Sergeant
    Reputation
    46
    Join Date
    May 2006
    Posts
    101
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is the program detecting "LeftControlKey" when I assign the key left control key
    it shows Key(s): ControlKey

    And when I click spam, its not spamming the LeftControlKey. I guess you forgot to program Left and Right for the keys Ctrl, Shift, and Alt. All other keys work fine.

    Edit:
    With further testing I have come to the conclusion that the program is not detecting the CTRL, ALT, and Shft in general
    whether it be left or right assigned.

    I have tested this theory on other programs including Paint, Word, and Excel. Those keys are not detected by spammer.
    Last edited by Eliteplague; 04-12-2011 at 12:37 PM.
    eppersdance: Once a hacker, always a hacker. eppersdance:

  7. #52
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, I didn't even work on ctrl/alt/shift support. So it doesn't support CTRL+A or such keys if that's what you're trying to do. If youre only trying to make it send CTRL, and it doesn't work, then it may be something wrong with the way PostMessage function handles the CTRL key.

    Do other keys work in those programs you're trying to spam, because last time I tried, this didn't work very good with programs that aren't games. This is because of the way I coded the keys/text flags it sends, and I could probably eventually fix this if you want me to.

  8. #53
    Eliteplague's Avatar Master Sergeant
    Reputation
    46
    Join Date
    May 2006
    Posts
    101
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DrakeFish View Post
    Hmm, I didn't even work on ctrl/alt/shift support. So it doesn't support CTRL+A or such keys if that's what you're trying to do. If youre only trying to make it send CTRL, and it doesn't work, then it may be something wrong with the way PostMessage function handles the CTRL key.

    Do other keys work in those programs you're trying to spam, because last time I tried, this didn't work very good with programs that aren't games. This is because of the way I coded the keys/text flags it sends, and I could probably eventually fix this if you want me to.
    I'm more interested in you adding ctrl/alt/shift support, if possible. Thanks.
    eppersdance: Once a hacker, always a hacker. eppersdance:

  9. #54
    Traxex84's Avatar Contributor Authenticator enabled
    Reputation
    257
    Join Date
    May 2010
    Posts
    816
    Thanks G/R
    1/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump, reason. Is awesome and is still useable. Not trying to necro.

  10. #55
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You should have bumped 1.2 Thread =(

  11. #56
    Traxex84's Avatar Contributor Authenticator enabled
    Reputation
    257
    Join Date
    May 2010
    Posts
    816
    Thanks G/R
    1/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh sorry didn't notice it :c

  12. #57
    JustJustinIt's Avatar Member
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Help?

    I don't see the change sleeptime button. I've changed my screen resolution to every other setting and I still don't see it. Help?

  13. #58
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JustJustinIt View Post
    I don't see the change sleeptime button. I've changed my screen resolution to every other setting and I still don't see it. Help?
    Try using _keySpam v1.2, I made another thread for it.

  14. #59
    JustJustinIt's Avatar Member
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahh. Thought I was already using this one! I only see about half of the Sleep Time row now. But it's just enough to change it! Thanks again. This is a big help

  15. #60
    Xel's Avatar ★ Elder ★
    Authenticator enabled
    Reputation
    1179
    Join Date
    Jul 2008
    Posts
    2,906
    Thanks G/R
    94/51
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rejuvenation -> Travel form -> run forward for some seconds (direction player controlled by mouse) -> exit travel -> lifebloom x1 -> travel -> exit travel -> lifebloom x2 -> travel -> exit travel -> lifebloom x3 -> shadowmeld -> catform -> prowl.

    That's what I've used for some time now.

Page 4 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Release] _keySpam: Timed Keys Sender
    By DrakeFish in forum World of Warcraft Bots and Programs
    Replies: 48
    Last Post: 11-13-2022, 09:41 AM
  2. [Release] _keySpam: Timed Keys Sender v1.2
    By DrakeFish in forum World of Warcraft Bots and Programs
    Replies: 57
    Last Post: 07-31-2019, 06:25 PM
  3. WTT gilder elite life time key for wow cd keys
    By cooper101 in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 1
    Last Post: 07-02-2008, 02:18 PM
  4. WTS Glider Elite Life Time Key
    By Stephen Colbert in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 4
    Last Post: 04-07-2008, 06:46 PM
All times are GMT -5. The time now is 08:36 AM. 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