Introducing MPGH's AIGA. The latest advancement in artificial intelligence. Click here now to learn more!
Results 1 to 10 of 10
  1. #1
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,109
    My Mood
    Angelic

    Universal Text Sender 1.0

    Mainly designed for CoD, MW2 and MW3 as far as I know...

    Here it is, I got requested to add so the user could set the color mark ( ^ ) into the chat tool.
    But it didn't support it so I made this instead :P

    This uses the Copy/Paste Method and is therefore not as fast...

    There should be no problems.
    If there is anything you would like me to add to it just request it

    How to use:
    Enter the text on the lines, each line will be sent separably.
    Easy color adding - Just press the add color when you choosed the color.

    When in-game: Press F3 and wait till it is done sending, else it will include the letters you press...


    Mainly thanks to: StikxX - For meaking it. TeamDarkness - Leeching it

    Image:


     
    For all that wonder how the code is: - Don't think all the sleeps are need but...
    Code:
    private void sendText()
            {
                int i = 0;
                foreach (string a in richTextBox1.Lines)
                {
                    try
                    {
                        Clipboard.SetText(richTextBox1.Lines[i]);
                    }
                    catch { }
                    System.Threading.Thread.Sleep(100);
                    SendKeys.SendWait("T");
                    System.Threading.Thread.Sleep(200);
                    SendKeys.Send("^v");
                    System.Threading.Thread.Sleep(200);
                    SendKeys.Send("{Enter}");
                    System.Threading.Thread.Sleep(400);
                    i++;
                }
            }
    
    NOTE:
    Well, I did it a bit the hard way...
    You could replace the  int stuff with just the  a, since that is the text string X,x


    Virus Scan 1
    Virus Scan 2
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Jorndel; 02-24-2012 at 03:28 PM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  2. The Following 31 Users Say Thank You to Jorndel For This Useful Post:

    AfRoLEX (04-28-2012),AkaiNaoma (04-27-2014),blainejohnson98 (03-12-2013),brianandlalo (06-24-2012),EpicCockMuncherNo1 (02-24-2012),fnatix (04-28-2012),ginovanloon (04-28-2012),HAPPYFEETHAPPYFEET (12-19-2012),hochikage (02-25-2012),hulegehu (04-28-2012),JB88579 (10-17-2012),jesse131 (04-29-2012),JoonasBatu (05-05-2012),KeyTools (02-25-2012),locojack (02-27-2013),LordDrk (04-29-2012),mikkeldj12 (04-28-2012),Muscab21 (04-28-2012),Mustermann1997 (07-09-2012),Mw3xXxSniper (01-28-2016),Sebllar (07-17-2012),sebzilla (04-28-2012),SKJustinSK (04-29-2012),Stan1234 (02-08-2013),tiki69 (09-26-2012),typsi (04-28-2012),UavN (04-28-2012),verex (04-28-2012),vidmavidma (02-25-2012),zouzou.141 (08-01-2012),_head_ (04-28-2012)

  3. #2
    EpicCockMuncherNo1's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Alone in the Dark
    Posts
    1,546
    Reputation
    152
    Thanks
    21,771
    Finally You did it. Awesome Bro. Rep+

    @ StikxX once again thx for the Main Idea.

  4. The Following User Says Thank You to EpicCockMuncherNo1 For This Useful Post:

    444555 (02-25-2012)

  5. #3
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,109
    My Mood
    Angelic
    Bump-
    So people see that we have Text Senders as well.
    Last edited by Jorndel; 04-28-2012 at 02:18 PM. Reason: Fixed my mistake. Sorry

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  6. #4
    LokiStormBringer's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Los Angeles
    Posts
    336
    Reputation
    30
    Thanks
    43
    The "game ending" hack for the last version will be updated to that one? Would be great.

  7. #5
    UavN's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    42
    Reputation
    10
    Thanks
    5
    My Mood
    Twisted
    Mighty fine work Jorndel. Might I suggest adjustable speed?

    Down into the 0.* intervals if possible. For those who want to literally spam.

  8. #6
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,109
    My Mood
    Angelic
    Quote Originally Posted by UavN View Post
    Mighty fine work Jorndel. Might I suggest adjustable speed?

    Down into the 0.* intervals if possible. For those who want to literally spam.
    Well, MW3 have an anti-send chat thing.
    If you send send to much: Enter
    It will not send the text.

    Means:
    Spamming to fast won't go.
    Because there is an "anti-spammer"

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  9. #7
    UavN's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    42
    Reputation
    10
    Thanks
    5
    My Mood
    Twisted
    Quote Originally Posted by Jorndel View Post
    Well, MW3 have an anti-send chat thing.
    If you send send to much: Enter
    It will not send the text.

    Means:
    Spamming to fast won't go.
    Because there is an "anti-spammer"
    Oh I'm aware of that, but this program isn't just limited to MW3, is it?

  10. #8
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,109
    My Mood
    Angelic
    Quote Originally Posted by UavN View Post
    Oh I'm aware of that, but this program isn't just limited to MW3, is it?
    Well, this isn't really a spammer :S
    This is just a text sender.

    To send like a "Personal" introduction every round or so...

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  11. #9
    UavN's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    42
    Reputation
    10
    Thanks
    5
    My Mood
    Twisted
    Fair enough, nice work never the less.

  12. #10
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,109
    My Mood
    Angelic
    Quote Originally Posted by UavN View Post
    Fair enough, nice work never the less.
    Well, suppose I can manage make a Spammer for you

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

Similar Threads

  1. [Release] MW3 Text Sender 2.0 [Made on Request]
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 5
    Last Post: 03-16-2012, 11:51 AM
  2. Green Text
    By sealteam4 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-05-2006, 02:35 PM
  3. Stylish Text Tutorial
    By Bull3t in forum Tutorials
    Replies: 13
    Last Post: 08-15-2006, 10:25 PM
  4. How big you are in the universe?
    By arunforce in forum General
    Replies: 0
    Last Post: 07-26-2006, 08:50 PM
  5. Simple Reflective Text
    By Chronologix in forum Tutorials
    Replies: 4
    Last Post: 05-20-2006, 05:56 AM