AceFlyFF client

07/06/2019 17:14 sebariio#1
Hello

This release contains the entire ace flyff client
[Only registered and activated users can see links. Click Here To Register...]

Client is encrypted, and i don't know how to decrypt but it contains a lot of resources. So i throw it here if someone can decrypt it

Enjoy

[Only registered and activated users can see links. Click Here To Register...]
07/07/2019 00:15 ml0181550#2
I hope someone can decrypt it.
07/07/2019 12:16 Konsan#3
Quote:
Originally Posted by ml0181550 View Post
I hope someone can decrypt it.
The person with the source can decrypt it. Hah
07/07/2019 19:52 Blouflash#4
Quote:
Originally Posted by Konsan View Post
The person with the source can decrypt it. Hah
Every person with the needed knowledge can.
07/08/2019 03:14 Konsan#5
Quote:
Originally Posted by Blouflash View Post
Every person with the needed knowledge can.
Yes, this I believe:D
07/12/2019 16:39 *~Valvatorez~*#6
Quote:
Originally Posted by Konsan View Post
The person with the source can decrypt it. Hah
4y ago... Idk
[Only registered and activated users can see links. Click Here To Register...]
07/12/2019 18:51 matonskie23#7
Quote:
Originally Posted by *~Valvatorez~* View Post
4y ago... Idk
[Only registered and activated users can see links. Click Here To Register...]
haha universal Source just added some :D
07/12/2019 23:21 Konsan#8
Quote:
Originally Posted by *~Valvatorez~* View Post
4y ago... Idk
[Only registered and activated users can see links. Click Here To Register...]
Thank you for sharing
07/13/2019 00:34 Reimniess#9
ace's source has never been leaked, some french developer went around selling a few of the systems that were sold to them due to thinking that we were not competing for the same players as well as them seeming 'ok'

not sure how many are the real things though, I tend not to download random sources

you may want to reconsider using them though, I know the person selling them missed a ton of things like security changes that'll create more than a small mess, including item and penya dupes.
07/13/2019 12:35 xMeher#10
Code:
static BYTE Decryption( BYTE byEncryptionKey, BYTE byData )
		{
			return ((signed int)(unsigned __int8)(byEncryptionKey ^ ~byData ^ 0x7B) >> 4) | 16 * (unsigned __int8)(byEncryptionKey ^ ~byData ^ 0x7B);
		}
Code:
 v29 = 1;
      for ( i = 0; i < nFileHeaderSize; ++i )
      {
        v2 = Decryption(byEncryptionKey, *(_BYTE *)(v29 + pCryptHeader));
        *(_BYTE *)(i + pHeader) = i % 0x25 ^ v2 ^ 0xD7;
        v29 += 2;
      }
rest is pretty much straight forward
07/13/2019 18:53 matonskie23#11
Quote:
Originally Posted by xMeher View Post
Code:
static BYTE Decryption( BYTE byEncryptionKey, BYTE byData )
		{
			return ((signed int)(unsigned __int8)(byEncryptionKey ^ ~byData ^ 0x7B) >> 4) | 16 * (unsigned __int8)(byEncryptionKey ^ ~byData ^ 0x7B);
		}
Code:
 v29 = 1;
      for ( i = 0; i < nFileHeaderSize; ++i )
      {
        v2 = Decryption(byEncryptionKey, *(_BYTE *)(v29 + pCryptHeader));
        *(_BYTE *)(i + pHeader) = i % 0x25 ^ v2 ^ 0xD7;
        v29 += 2;
      }
rest is pretty much straight forward
thanks for this :D