1
0
mirror of synced 2024-11-14 23:07:36 +01:00

Add Tapping Skill Test APM3 profile

Add Tapping Skill Test APM3 profile
This commit is contained in:
Reaver 2021-07-03 03:35:57 +03:00
parent 9af03a1c78
commit 6835ae5f1c
3 changed files with 17 additions and 1 deletions

View File

@ -1006,6 +1006,15 @@ static void HookAPM3()
}, nullptr, 0, nullptr);
}
static InitFunction initFuncTapping([]()
{
HookAPM3();
strcpy(APM3GameId, "SDFJ");
__int64 mainModuleBase = (__int64)GetModuleHandle(0);
}, GameID::TappingSkillTest);
static InitFunction initFunc([]()
{
HookAPM3();

View File

@ -660,6 +660,12 @@ void GameDetect::DetectCurrentGame()
case 0x8c30fa5a:
currentGame = GameID::PuyoPuyoEsports;
break;
case 0xe000b287: // Ver 10
case 0x4f878b4e: // Ver 10 TEST
case 0x29a4a185: // Ver 11
case 0x9c7bb2e1: // Ver 11 TEST
currentGame = GameID::TappingSkillTest;
break;
#endif
default:
#ifdef _DEBUG

View File

@ -102,5 +102,6 @@ enum class GameID
VF5Esports,
GoonyaFighter,
PuyoPuyoEsports,
SFV
SFV,
TappingSkillTest
};