Close



Keep me logged in.

Forgot your password? | Register Now

Results 1 to 10 of 10
  1. Original Post
    Formerly !bananaman!
    tylerallmighty's Avatar

    Default [PUBLIC BETA] Bypass Tool v2.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.

  2. The Following User Says Thank You to tylerallmighty For This Useful Post:

    howcoolisthis (10-04-2011)

  3. #2
    Ofishal Mehmbur
    howcoolisthis's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by !bananaman! View Post
    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
    Nice shit bro! also can i put ur program in my program? pm about it cuz i need 2 ask u sumin
    Register or log in to view signatures.

  4. #3
    Formerly !bananaman!
    tylerallmighty's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by howcoolisthis View Post
    Nice shit bro! also can i put ur program in my program? pm about it cuz i need 2 ask u sumin
    Hmmmm. I dunno. I'd like to keep this program the way it is. Unless what you've got is the shit, I'm not agreeing.
    Register or log in to view signatures.

  5. #4
    Purple

    Default


    0 Not allowed! Not allowed!
    Nice bro.
    You should use something like this to set a max amount of bytes.

    PHP Code:
    public void TextChanged()
    {
     
    Counter.Text editor.Text.Length;
     if ( 
    editor.Text.Length 60 )
      
    Counter.forecolor Color.Red;
     else
      
    Counter.forecolor Color.Green;

    Also for the syntax you may find this script useful.
    PHP Code:
    public bool balanced(string textchar onechar two)
    {
     
    int[] Counter = { };
     
    char[] Text text.ToCharArray();
     for ( 
    int current 0current text.Lengthcurrent++ )
     {
      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.

  6. #5
    [move]Jake from state farm.[/move] 402 Crew!
    Jake625's Avatar

    Default


    0 Not allowed! Not allowed!
    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.

  7. #6
    Formerly !bananaman!
    tylerallmighty's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by BAdmaNgLiTcHa View Post
    Nice bro. You should use something like this to set a max amount of bytes.
    PHP Code:
    public void TextChanged() {  Counter.Text editor.Text.Length;  if ( editor.Text.Length 60 )   Counter.forecolor Color.Red;  else   Counter.forecolor Color.Green; } 
    Also for the syntax you may find this script useful.
    PHP Code:
     public bool balanced(string textchar onechar two) {  int[] Counter = { };  char[] Text text.ToCharArray();  for ( int current 0current text.Lengthcurrent++ )  {   if ( Text[current] == one )    Counter[0] += 1;   if ( Text[current] == two )    Counter[1] += 1;  }  if ( Counter[0] == Counter[1] )   return true;  else   return false; } 
    Thanks. I'll try it out.
    Quote Originally Posted by jp4priest View Post
    I could of swore someone had a byte counter in their program too. you sure your giving credits? :\
    Ummm. It might have been my old one. It's not hard to do.
    Code:
     label1.Text = richTextBox1.TextLength.ToString();
    That's wrong, but I'm on my iPhone, and I can't remember the code. But it's very similar.
    Register or log in to view signatures.

  8. #7
    [move]Jake from state farm.[/move] 402 Crew!
    Jake625's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by !bananaman! View Post
    Thanks. I'll try it out. Ummm. It might have been my old one. It's not hard to do.
    Code:
     label1.Text = richTextBox1.TextLength.ToString();
    That's wrong, but I'm on my iPhone, and I can't remember the code. But it's very similar.
    I think it's like label1.text = len(richtextbox1.text)

    I use to program too lol. that ones way cheaper and this is random but btw you should get android swype on ipod touch. source: cydia.myrepospace.com/wyndwarrior then search iswype
    Register or log in to view signatures.

  9. #8
    Formerly !bananaman!
    tylerallmighty's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by jp4priest View Post
    I think it's like label1.text = len(richtextbox1.text)

    I use to program too lol. that ones way cheaper and this is random but btw you should get android swype on ipod touch. source: cydia.myrepospace.com/wyndwarrior then search iswype
    I don't have a JB yet.

    ---------- Post added at 10:54 AM ---------- Previous post was at 07:51 AM ----------

    Quote Originally Posted by BAdmaNgLiTcHa View Post
    Nice bro.
    You should use something like this to set a max amount of bytes.

    PHP Code:
    public void TextChanged()
    {
     
    Counter.Text editor.Text.Length;
     if ( 
    editor.Text.Length 60 )
      
    Counter.forecolor Color.Red;
     else
      
    Counter.forecolor Color.Green;

    Also for the syntax you may find this script useful.
    PHP Code:
    public bool balanced(string textchar onechar two)
    {
     
    int[] Counter = { };
     
    char[] Text text.ToCharArray();
     for ( 
    int current 0current text.Lengthcurrent++ )
     {
      if ( 
    Text[current] == one )
       
    Counter[0] += 1;
      if ( 
    Text[current] == two )
       
    Counter[1] += 1;
     }
     if ( 
    Counter[0] == Counter[1] )
      return 
    true;
     else
      return 
    false;

    Could you show me how to implement this? Send it in a PM if possible.
    Register or log in to view signatures.

  10. #9
    Purple

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by !bananaman! View Post
    I don't have a JB yet.

    Could you show me how to implement this? Send it in a PM if possible.
    Counter = label
    textBox = text area


    Run it via the text area's text has been chnaged.
    PHP Code:
    private void textBox_TextChanged(object senderEventArgs 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.

  11. #10
    Formerly !bananaman!
    tylerallmighty's Avatar

    Default


    0 Not allowed! Not allowed!
    Quote Originally Posted by BAdmaNgLiTcHa View Post
    Counter = label
    textBox = text area


    Run it via the text area's text has been chnaged.
    PHP Code:
    private void textBox_TextChanged(object senderEventArgs e)
    {
        
    Counter.Text ""+textBox.Text.Length;
        if (
    textBox.Text.Length 60)
            
    Counter.ForeColor Color.Red;
        else
            
    Counter.ForeColor Color.Green;

    Thanks. I'm still a noob. I edit it a little, because I wanted it to do something else. :P

    PHP Code:
    label2.Text "" richTextBox1.Text.Length;
    if (
    richTextBox1.Text.Length 1000)
        
    richTextBox1.BackColor Color.Red
    But thanks for the base, and you will receive credits on the final Beta, and final version.
    Last edited by tylerallmighty; 10-05-2011 at 01:00 PM.
    Register or log in to view signatures.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •