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
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
Re: Mrs Custom Encrypter Advanced + Source
Quote:
Originally Posted by
steven1234
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....
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
Re: Mrs Custom Encrypter Advanced + Source
Re: Mrs Custom Encrypter Advanced + Source
Nice, maybe you could write this for 2008 files :o?
Re: Mrs Custom Encrypter Advanced + Source
Steven dose the auto update works? do i need to use a Encrypted ZPatchBuilder?
Re: Mrs Custom Encrypter Advanced + Source
Quote:
Originally Posted by
randy1234
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
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
Re: Mrs Custom Encrypter Advanced + Source
Re: Mrs Custom Encrypter Advanced + Source
the link to download not work can you upload to aother site?
Re: Mrs Custom Encrypter Advanced + Source
Upload to a other site pls.
Re: Mrs Custom Encrypter Advanced + Source
Re: Mrs Custom Encrypter Advanced
Very nice work. I know its urs, but it looks like Lambda's one.