0

Public Beta v2.0 CoD4 Bypass Tool
Here is my public release of my CoD4 tool with syntax highlighting. It's an inefficient way of doing it, but I'm not that advanced yet.
I need ideas on what colors, and characters/phrases should be included in the highlighting.
It also includes a byte counter, so you can see how much space you have left. =D
The full version will be released on my site 2 weeks before I put it on NGU.
Remember, this is only a public beta, and I might (keyword 'might) add some extra features.
If ya don't trust me, don't download.
Please leave all feedback, good and bad. It's the only way to make it better. Oh, and please criticize my coding abilities. Yes, I did just ask you to basically be a dick to me. ;D
Last edited by tylerallmighty; 10-04-2011 at 01:17 PM.
Register or log in to view signatures.
howcoolisthis (10-04-2011)
Register or log in to view signatures.

Register or log in to view signatures.

Nice bro.
You should use something like this to set a max amount of bytes.
Also for the syntax you may find this script useful.PHP Code:public void TextChanged()
{
Counter.Text = editor.Text.Length;
if ( editor.Text.Length < 60 )
Counter.forecolor = Color.Red;
else
Counter.forecolor = Color.Green;
}
PHP Code:public bool balanced(string text, char one, char two)
{
int[] Counter = { };
char[] Text = text.ToCharArray();
for ( int current = 0; current < text.Length; current++ )
{
if ( Text[current] == one )
Counter[0] += 1;
if ( Text[current] == two )
Counter[1] += 1;
}
if ( Counter[0] == Counter[1] )
return true;
else
return false;
}
Last edited by TooManyLols; 10-04-2011 at 05:35 PM.
Register or log in to view signatures.

I could of swore someone had a byte counter in their program too.
you sure your giving credits? :\
Register or log in to view signatures.

Register or log in to view signatures.

Register or log in to view signatures.

Register or log in to view signatures.

Counter = label
textBox = text area
Run it via the text area's text has been chnaged.
PHP Code:private void textBox_TextChanged(object sender, EventArgs e)
{
Counter.Text = ""+textBox.Text.Length;
if (textBox.Text.Length < 60)
Counter.ForeColor = Color.Red;
else
Counter.ForeColor = Color.Green;
}
Register or log in to view signatures.

Thanks. I'm still a noob.
I edit it a little, because I wanted it to do something else. :P
But thanks for the base, and you will receive credits on the final Beta, and final version.PHP Code:label2.Text = "" + richTextBox1.Text.Length;
if (richTextBox1.Text.Length > 1000)
richTextBox1.BackColor = Color.Red;
![]()
Last edited by tylerallmighty; 10-05-2011 at 01:00 PM.
Register or log in to view signatures.