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:
Source Code
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