Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

[Request] Update script for QQ VFS file

Featured Replies

  • Author
  • Localization

unominhtuan, posted Sat Jul 21, 2018 4:23 am (36888)


aluigi wrote:
...


Today I went back to work with the vfs file and this script however I got a notification when reimport ... and then I could not play the game

Image

You can check the script again, thanks
  • Author
  • Localization

aluigi, posted Sat Jul 21, 2018 6:02 am (36893)


reimport2 can't be used with sequential formats, that's clearly written in the screenshot you posted.
  • Author
  • Localization

unominhtuan, posted Sun Jul 22, 2018 10:56 am (36936)


aluigi wrote:
reimport2 can't be used with sequential formats, that's clearly written in the screenshot you posted.


i use reimport.bat and similar
Image
  • Author
  • Localization

aluigi, posted Tue Jul 24, 2018 2:48 am (36970)


Probably the script can't be used in reimport mode.
  • Author
  • Localization

unominhtuan, posted Fri Jul 27, 2018 6:49 am (37044)


Ekey wrote:
CRC calc for this game. Maybe useful for someone.

Code:
uint32_t moon_crc32(uint32_t dwSize, uint8_t *pBuffer, uint32_t dwHash)
{
  uint32_t dwShiftedSize;
  uint32_t dwR1;
  uint32_t dwR2;
  uint32_t dwR3;

  while ( (uint8_t)pBuffer & 3 && dwSize )
  {
    dwHash = crc32_tab[*pBuffer ^ (uint8_t)dwHash] ^ (dwHash >> 8);
    --dwSize;
  }
 
  if ( dwSize >= 4 )
  {
    dwShiftedSize = dwSize >> 2;
    do
    {
      dwSize -= 4;
      dwR1 = crc32_tab[(uint8_t)(*pBuffer ^ dwHash)] ^ ((*(DWORD *)pBuffer ^ dwHash) >> 8);
      pBuffer = 4;
      dwR2 = crc32_tab[(uint8_t)dwR1] ^ (dwR1 >> 8);
      dwR3 = crc32_tab[(uint8_t)dwR2] ^ (dwR2 >> 8);
      dwHash = crc32_tab[(uint8_t)dwR3] ^ (dwR3 >> 8);
      --dwShiftedSize;
    }
    while ( dwShiftedSize );
  }
 
  for ( ; dwSize; pBuffer )
  {
    dwHash = crc32_tab[*pBuffer ^ (uint8_t)dwHash] ^ (dwHash >> 8);
    --dwSize;
  }
 
  return ~dwHash;
}


Ekey, can you help me :(
  • Author
  • Localization

unominhtuan, posted Sun Aug 12, 2018 2:49 am (37442)


:( :( :( :( :( :(
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.