├── .gitattributes ├── .gitignore ├── AOEIITrainer ├── AOEIITrainer.sln ├── AOEIITrainer │ ├── AOEIITrainer.cpp │ ├── AOEIITrainer.h │ ├── AOEIITrainer.rc │ ├── AOEIITrainer.vcxproj │ ├── AOEIITrainer.vcxproj.filters │ ├── AOEIITrainerDlg.cpp │ ├── AOEIITrainerDlg.h │ ├── DataDef.h │ ├── MemoryOpt.cpp │ ├── MemoryOpt.h │ ├── Resource.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ │ ├── AOEIITrainer.ico │ │ └── AOEIITrainer.rc2 │ └── targetver.h ├── age2_x1.CT ├── 单位id列表.txt └── 帝国时代2.txt ├── AoEIIDETrainer ├── AoE2DE_s.CT ├── AoEIIDETrainer.sln ├── AoEIIDETrainer │ ├── AoEIIDETrainer.cpp │ ├── AoEIIDETrainer.h │ ├── AoEIIDETrainer.rc │ ├── AoEIIDETrainer.vcxproj │ ├── AoEIIDETrainer.vcxproj.filters │ ├── AoEIIDETrainerDlg.cpp │ ├── AoEIIDETrainerDlg.h │ ├── DataDef.h │ ├── MemoryOpt.cpp │ ├── MemoryOpt.h │ ├── Resource.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ │ ├── AoEIIDETrainer.ico │ │ └── AoEIIDETrainer.rc2 │ └── targetver.h ├── 帝国时代2决定版.txt ├── 特色单位ID.txt └── 科技id.txt ├── AoEIIIDETrainer ├── AoE3DE_s.CT ├── 单位和科技.txt └── 帝国3科技和单位ID.xlsx ├── AoEIIITrainer ├── age3y.CT └── 帝国时代3亚洲王朝.txt ├── AoEIVTrainner ├── AoE4.CT └── aoe4.txt ├── AoMxTrainer ├── AoMx.CT └── 神话时代.txt ├── CT Tables ├── DyingLightGame.CT ├── HomeworldRM_v2.300.CT ├── MMH7Game-Win64-Shipping.CT ├── SC2.CT ├── SC2.txt ├── SPAZ2_64.CT ├── war3.CT ├── war3.txt └── 脱壳一般方法(未测试).png ├── LICENSE ├── PlantsVsZombiesTrainer ├── PlantsVsZombies.CT ├── PlantsVsZombiesTrainer.sln ├── PlantsVsZombiesTrainer │ ├── PlantsVsZombiesTrainer.cpp │ ├── PlantsVsZombiesTrainer.h │ ├── PlantsVsZombiesTrainer.rc │ ├── PlantsVsZombiesTrainer.vcxproj │ ├── PlantsVsZombiesTrainer.vcxproj.filters │ ├── PlantsVsZombiesTrainerDlg.cpp │ ├── PlantsVsZombiesTrainerDlg.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ │ ├── PlantsVsZombiesTrainer.ico │ │ └── PlantsVsZombiesTrainer.rc2 │ ├── resource.h │ └── targetver.h └── 植物大战僵尸.txt ├── README.md └── WmgjTrainer ├── WmgjLibrary ├── DataDef.h ├── DllMainDlg.cpp ├── DllMainDlg.h ├── GameOpt.cpp ├── GameOpt.h ├── GlobalInfo.cpp ├── GlobalInfo.h ├── MemoryOpt.cpp ├── MemoryOpt.h ├── ParamMgr.cpp ├── ParamMgr.h ├── ThreadOnHook.cpp ├── ThreadOnHook.h ├── WmgjLibrary.cpp ├── WmgjLibrary.def ├── WmgjLibrary.h ├── WmgjLibrary.idl ├── WmgjLibrary.rc ├── WmgjLibrary.vcxproj ├── WmgjLibrary.vcxproj.filters ├── framework.h ├── pch.cpp ├── pch.h ├── res │ └── WmgjLibrary.rc2 ├── resource.h └── targetver.h ├── WmgjTrainer.sln ├── WmgjTrainer ├── DataDef.h ├── TrayIcon.cpp ├── TrayIcon.h ├── WmgjTrainer.cpp ├── WmgjTrainer.h ├── WmgjTrainer.rc ├── WmgjTrainer.vcxproj ├── WmgjTrainer.vcxproj.filters ├── WmgjTrainerDlg.cpp ├── WmgjTrainerDlg.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ ├── WmgjTrainer.ico │ └── WmgjTrainer.rc2 ├── resource.h └── targetver.h └── 逆向思路.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer.sln -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainer.cpp -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainer.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainer.rc -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainer.vcxproj -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainer.vcxproj.filters -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainerDlg.cpp -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/AOEIITrainerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/AOEIITrainerDlg.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/DataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/DataDef.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/MemoryOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/MemoryOpt.cpp -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/MemoryOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/MemoryOpt.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/Resource.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/framework.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/pch.cpp -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/pch.h -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/res/AOEIITrainer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/res/AOEIITrainer.ico -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/res/AOEIITrainer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/res/AOEIITrainer.rc2 -------------------------------------------------------------------------------- /AOEIITrainer/AOEIITrainer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/AOEIITrainer/targetver.h -------------------------------------------------------------------------------- /AOEIITrainer/age2_x1.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/age2_x1.CT -------------------------------------------------------------------------------- /AOEIITrainer/单位id列表.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/单位id列表.txt -------------------------------------------------------------------------------- /AOEIITrainer/帝国时代2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AOEIITrainer/帝国时代2.txt -------------------------------------------------------------------------------- /AoEIIDETrainer/AoE2DE_s.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoE2DE_s.CT -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer.sln -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.cpp -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.rc -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.vcxproj -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainer.vcxproj.filters -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainerDlg.cpp -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/AoEIIDETrainerDlg.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/DataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/DataDef.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/MemoryOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/MemoryOpt.cpp -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/MemoryOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/MemoryOpt.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/Resource.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/framework.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/pch.cpp -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/pch.h -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/res/AoEIIDETrainer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/res/AoEIIDETrainer.ico -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/res/AoEIIDETrainer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/res/AoEIIDETrainer.rc2 -------------------------------------------------------------------------------- /AoEIIDETrainer/AoEIIDETrainer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/AoEIIDETrainer/targetver.h -------------------------------------------------------------------------------- /AoEIIDETrainer/帝国时代2决定版.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/帝国时代2决定版.txt -------------------------------------------------------------------------------- /AoEIIDETrainer/特色单位ID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/特色单位ID.txt -------------------------------------------------------------------------------- /AoEIIDETrainer/科技id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIDETrainer/科技id.txt -------------------------------------------------------------------------------- /AoEIIIDETrainer/AoE3DE_s.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIIDETrainer/AoE3DE_s.CT -------------------------------------------------------------------------------- /AoEIIIDETrainer/单位和科技.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIIDETrainer/单位和科技.txt -------------------------------------------------------------------------------- /AoEIIIDETrainer/帝国3科技和单位ID.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIIDETrainer/帝国3科技和单位ID.xlsx -------------------------------------------------------------------------------- /AoEIIITrainer/age3y.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIITrainer/age3y.CT -------------------------------------------------------------------------------- /AoEIIITrainer/帝国时代3亚洲王朝.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIIITrainer/帝国时代3亚洲王朝.txt -------------------------------------------------------------------------------- /AoEIVTrainner/AoE4.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIVTrainner/AoE4.CT -------------------------------------------------------------------------------- /AoEIVTrainner/aoe4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoEIVTrainner/aoe4.txt -------------------------------------------------------------------------------- /AoMxTrainer/AoMx.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoMxTrainer/AoMx.CT -------------------------------------------------------------------------------- /AoMxTrainer/神话时代.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/AoMxTrainer/神话时代.txt -------------------------------------------------------------------------------- /CT Tables/DyingLightGame.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/DyingLightGame.CT -------------------------------------------------------------------------------- /CT Tables/HomeworldRM_v2.300.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/HomeworldRM_v2.300.CT -------------------------------------------------------------------------------- /CT Tables/MMH7Game-Win64-Shipping.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/MMH7Game-Win64-Shipping.CT -------------------------------------------------------------------------------- /CT Tables/SC2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/SC2.CT -------------------------------------------------------------------------------- /CT Tables/SC2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/SC2.txt -------------------------------------------------------------------------------- /CT Tables/SPAZ2_64.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/SPAZ2_64.CT -------------------------------------------------------------------------------- /CT Tables/war3.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/war3.CT -------------------------------------------------------------------------------- /CT Tables/war3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/war3.txt -------------------------------------------------------------------------------- /CT Tables/脱壳一般方法(未测试).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/CT Tables/脱壳一般方法(未测试).png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/LICENSE -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombies.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombies.CT -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.sln -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.cpp -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.rc -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.vcxproj -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer.vcxproj.filters -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainerDlg.cpp -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/PlantsVsZombiesTrainerDlg.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/framework.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/pch.cpp -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/pch.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/res/PlantsVsZombiesTrainer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/res/PlantsVsZombiesTrainer.ico -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/res/PlantsVsZombiesTrainer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/res/PlantsVsZombiesTrainer.rc2 -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/resource.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/PlantsVsZombiesTrainer/targetver.h -------------------------------------------------------------------------------- /PlantsVsZombiesTrainer/植物大战僵尸.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/PlantsVsZombiesTrainer/植物大战僵尸.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/README.md -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/DataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/DataDef.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/DllMainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/DllMainDlg.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/DllMainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/DllMainDlg.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/GameOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/GameOpt.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/GameOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/GameOpt.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/GlobalInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/GlobalInfo.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/GlobalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/GlobalInfo.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/MemoryOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/MemoryOpt.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/MemoryOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/MemoryOpt.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/ParamMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/ParamMgr.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/ParamMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/ParamMgr.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/ThreadOnHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/ThreadOnHook.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/ThreadOnHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/ThreadOnHook.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.def -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.idl -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.rc -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.vcxproj -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/WmgjLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/WmgjLibrary.vcxproj.filters -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/framework.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/pch.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/pch.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/res/WmgjLibrary.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/res/WmgjLibrary.rc2 -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/resource.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjLibrary/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjLibrary/targetver.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer.sln -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/DataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/DataDef.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/TrayIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/TrayIcon.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/TrayIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/TrayIcon.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainer.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainer.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainer.rc -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainer.vcxproj -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainer.vcxproj.filters -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainerDlg.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/WmgjTrainerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/WmgjTrainerDlg.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/framework.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/pch.cpp -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/pch.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/res/WmgjTrainer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/res/WmgjTrainer.ico -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/res/WmgjTrainer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/res/WmgjTrainer.rc2 -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/resource.h -------------------------------------------------------------------------------- /WmgjTrainer/WmgjTrainer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/WmgjTrainer/targetver.h -------------------------------------------------------------------------------- /WmgjTrainer/逆向思路.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeulYoung/TrainerCollection/HEAD/WmgjTrainer/逆向思路.txt --------------------------------------------------------------------------------