Mrs Custom Encrypter Advanced + Source

Page 2 of 2 FirstFirst 12
Results 26 to 38 of 38
  1. #26
    Proficient Member steven1234 is offline
    MemberRank
    Jan 2010 Join Date
    186Posts

    Re: Mrs Custom Encrypter Advanced + Source

    hex edit it then replace mrs with ste

    ---------- Post added at 10:46 PM ---------- Previous post was at 10:45 PM ----------

    Quote Originally Posted by Linear88 View Post
    Code:
                    if(radioButton1.Checked == true){
                    if (encrypt[i] == b1)
                    {
                        if (encrypt[i + 1] == b2)
                        {
                            if (encrypt[i + 2] == b3)
                            {
                                if (encrypt[i + 3] == b4)
                                {
                                    if (encrypt[i + 4] == b5)
                                    {
                                        if (encrypt[i + 5] == b6)
                                        {
                                            if (encrypt[i + 6] == b7)
                                            {
                                                if (encrypt[i + 7] == b8)
                                                {
                                                    if (encrypt[i + 8] == b9)
                                                    {
                                                        if (encrypt[i + 9] == b10)
                                                        {
                                                            if (encrypt[i + 10] == b11)
                                                            {
                                                                if (encrypt[i + 11] == b12)
                                                                {
                                                                    if (encrypt[i + 12] == b13)
                                                                    {
                                                                        if (encrypt[i + 13] == b14)
                                                                        {
                                                                            if (encrypt[i + 14] == b15)
                                                                            {
                                                                                encrypt[i] = c1;
                                                                                encrypt[i + 1] = c2;
                                                                                encrypt[i + 2] = c3;
                                                                                encrypt[i + 3] = c4;
                                                                                encrypt[i + 4] = c5;
                                                                                encrypt[i + 5] = c6;
                                                                                encrypt[i + 6] = c7;
                                                                                encrypt[i + 7] = c8;
                                                                                encrypt[i + 8] = c9;
                                                                                encrypt[i + 9] = c10;
                                                                                encrypt[i + 10] = c11;
                                                                                encrypt[i + 11] = c12;
                                                                                encrypt[i + 12] = c13;
                                                                                encrypt[i + 13] = c14;
                                                                                encrypt[i + 14] = c15;
                                                                                i += 14;
                                                                            }
                                                                        }
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    }
                                }
                            }
                        }
    You might want to use switch().
    how the hell will that work i need it to check if there all there before it writes are you insane if i do a switch case it will only find 1 at a time but like this i can check more then one jesus

  2. #27
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Quote Originally Posted by steven1234 View Post
    hex edit it then replace mrs with ste

    ---------- Post added at 10:46 PM ---------- Previous post was at 10:45 PM ----------



    how the hell will that work i need it to check if there all there before it writes are you insane if i do a switch case it will only find 1 at a time but like this i can check more then one jesus
    But there are much, much cleaner ways of doing what you did there....

  3. #28
    Proficient Member steven1234 is offline
    MemberRank
    Jan 2010 Join Date
    186Posts

    Re: Mrs Custom Encrypter Advanced + Source

    oh yeah ofc just a array with all of the bytes in it and using
    j = i;
    b = 0;
    while(j < i+14){
    if(something[i] = byte[i]){
    b++;
    }
    j++;
    }
    if(b == 14){
    int f = i;
    int h = 0;
    while(f < i+14){
    something[i] = byte[h];
    }
    }

    mind you its 4 am wrote it off my head

  4. #29
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Oo, looks like c# :P

  5. #30
    Account Upgraded | Title Enabled! SHEEN[GB] is offline
    MemberRank
    Aug 2009 Join Date
    London, UKLocation
    263Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Nice, maybe you could write this for 2008 files :o?

  6. #31
    Account Upgraded | Title Enabled! randy1234 is offline
    MemberRank
    Mar 2009 Join Date
    SingaporeLocation
    1,196Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Steven dose the auto update works? do i need to use a Encrypted ZPatchBuilder?

  7. #32
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Quote Originally Posted by randy1234 View Post
    Steven dose the auto update works? do i need to use a Encrypted ZPatchBuilder?
    good luck on encrypting the ZPatchBuilder and you still need to encrypt the launcher manually as well

  8. #33
    Proficient Member steven1234 is offline
    MemberRank
    Jan 2010 Join Date
    186Posts

    Re: Mrs Custom Encrypter Advanced + Source

    all i did was hex edit mrs to what ever like str or lol dosnt matter do that with both launcher and zpatch

  9. #34
    Novice Delaware is offline
    MemberRank
    May 2010 Join Date
    2Posts

    Re: Mrs Custom Encrypter Advanced + Source

    very nice
    Last edited by Delaware; 08-05-10 at 04:15 PM.

  10. #35
    Account Upgraded | Title Enabled! hotgame is offline
    MemberRank
    Mar 2009 Join Date
    CanadaLocation
    305Posts

    Re: Mrs Custom Encrypter Advanced + Source

    the link to download not work can you upload to aother site?

  11. #36
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Upload to a other site pls.

  12. #37
    Member Sir Creative is offline
    MemberRank
    Jul 2010 Join Date
    70Posts

    Re: Mrs Custom Encrypter Advanced + Source

    Loving it :)

  13. #38
    Member Zarif is offline
    MemberRank
    Jul 2010 Join Date
    My Fly World ;pLocation
    59Posts

    Re: Mrs Custom Encrypter Advanced

    Very nice work. I know its urs, but it looks like Lambda's one.



Page 2 of 2 FirstFirst 12

Advertisement