├── DNFHelper.sln ├── DNFHelper ├── 2017.1.25基址.h ├── CALL.cpp ├── CALL.h ├── DNFHelper.vcxproj ├── DNFHelper.vcxproj.filters ├── DNFHelper.vcxproj.user ├── LDR断链 清除PE.cpp ├── LDR断链 清除PE.h ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── 全屏.cpp ├── 全屏.h ├── 公告.cpp ├── 公告.h ├── 内存读写.cpp ├── 内存读写.h ├── 判断.cpp ├── 判断.h ├── 剧情.cpp ├── 剧情.h ├── 加密解密.cpp ├── 加密解密.h ├── 劫持.h ├── 召唤人偶怪物.cpp ├── 召唤人偶怪物.h ├── 基址.h ├── 常用函数.cpp ├── 常用函数.h ├── 常用功能.cpp ├── 常用功能.h ├── 微调buff.cpp ├── 微调buff.h ├── 检测.cpp ├── 检测.h ├── 测试.h ├── 激活.cpp ├── 激活.h ├── 符咒.cpp ├── 符咒.h ├── 组包.cpp ├── 组包.h ├── 自动.cpp ├── 自动.h ├── 超级技能.cpp └── 超级技能.h ├── HelperStart ├── HelperStart.sln └── HelperStart │ ├── HelperStart.cpp │ ├── HelperStart.vcxproj │ ├── HelperStart.vcxproj.filters │ ├── HelperStart.vcxproj.user │ ├── inject.cpp │ ├── inject.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── InjectDll ├── InjectDll.sln └── InjectDll │ ├── InjectClass.cpp │ ├── InjectClass.h │ ├── InjectDll.cpp │ ├── InjectDll.h │ ├── InjectDll.rc │ ├── InjectDll.vcproj │ ├── InjectDll.vcproj.FREESKYC-1129E5.Administrator.user │ ├── InjectDll.vcxproj │ ├── InjectDll.vcxproj.filters │ ├── InjectDll.vcxproj.user │ ├── InjectDllDlg.cpp │ ├── InjectDllDlg.h │ ├── res │ ├── InjectDll.ico │ └── InjectDll.rc2 │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ReadMe.md ├── pic ├── 20180203135449.jpg ├── 20180203210201.jpg ├── 20180204143325.jpg ├── 20180204161712.jpg ├── 20180204175332.jpg ├── 20180207203719.jpg ├── F7DEE10C-83FE-406E-8954-58A366E8FF49-520-00000046E47E4ADE_tmp.jpg ├── IMG_0300.JPG └── IMG_0318.jpg └── 演示视频.mp4 /DNFHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper.sln -------------------------------------------------------------------------------- /DNFHelper/2017.1.25基址.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/2017.1.25基址.h -------------------------------------------------------------------------------- /DNFHelper/CALL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/CALL.cpp -------------------------------------------------------------------------------- /DNFHelper/CALL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/CALL.h -------------------------------------------------------------------------------- /DNFHelper/DNFHelper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/DNFHelper.vcxproj -------------------------------------------------------------------------------- /DNFHelper/DNFHelper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/DNFHelper.vcxproj.filters -------------------------------------------------------------------------------- /DNFHelper/DNFHelper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/DNFHelper.vcxproj.user -------------------------------------------------------------------------------- /DNFHelper/LDR断链 清除PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/LDR断链 清除PE.cpp -------------------------------------------------------------------------------- /DNFHelper/LDR断链 清除PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/LDR断链 清除PE.h -------------------------------------------------------------------------------- /DNFHelper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/dllmain.cpp -------------------------------------------------------------------------------- /DNFHelper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/stdafx.cpp -------------------------------------------------------------------------------- /DNFHelper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/stdafx.h -------------------------------------------------------------------------------- /DNFHelper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/targetver.h -------------------------------------------------------------------------------- /DNFHelper/全屏.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/全屏.cpp -------------------------------------------------------------------------------- /DNFHelper/全屏.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/全屏.h -------------------------------------------------------------------------------- /DNFHelper/公告.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/公告.cpp -------------------------------------------------------------------------------- /DNFHelper/公告.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/公告.h -------------------------------------------------------------------------------- /DNFHelper/内存读写.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/内存读写.cpp -------------------------------------------------------------------------------- /DNFHelper/内存读写.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/内存读写.h -------------------------------------------------------------------------------- /DNFHelper/判断.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/判断.cpp -------------------------------------------------------------------------------- /DNFHelper/判断.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/判断.h -------------------------------------------------------------------------------- /DNFHelper/剧情.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /DNFHelper/剧情.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /DNFHelper/加密解密.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/加密解密.cpp -------------------------------------------------------------------------------- /DNFHelper/加密解密.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/加密解密.h -------------------------------------------------------------------------------- /DNFHelper/劫持.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/劫持.h -------------------------------------------------------------------------------- /DNFHelper/召唤人偶怪物.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/召唤人偶怪物.cpp -------------------------------------------------------------------------------- /DNFHelper/召唤人偶怪物.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/召唤人偶怪物.h -------------------------------------------------------------------------------- /DNFHelper/基址.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/基址.h -------------------------------------------------------------------------------- /DNFHelper/常用函数.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/常用函数.cpp -------------------------------------------------------------------------------- /DNFHelper/常用函数.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/常用函数.h -------------------------------------------------------------------------------- /DNFHelper/常用功能.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/常用功能.cpp -------------------------------------------------------------------------------- /DNFHelper/常用功能.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/常用功能.h -------------------------------------------------------------------------------- /DNFHelper/微调buff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/微调buff.cpp -------------------------------------------------------------------------------- /DNFHelper/微调buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/微调buff.h -------------------------------------------------------------------------------- /DNFHelper/检测.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/检测.cpp -------------------------------------------------------------------------------- /DNFHelper/检测.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/检测.h -------------------------------------------------------------------------------- /DNFHelper/测试.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/测试.h -------------------------------------------------------------------------------- /DNFHelper/激活.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/激活.cpp -------------------------------------------------------------------------------- /DNFHelper/激活.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/激活.h -------------------------------------------------------------------------------- /DNFHelper/符咒.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/符咒.cpp -------------------------------------------------------------------------------- /DNFHelper/符咒.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/符咒.h -------------------------------------------------------------------------------- /DNFHelper/组包.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/组包.cpp -------------------------------------------------------------------------------- /DNFHelper/组包.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/组包.h -------------------------------------------------------------------------------- /DNFHelper/自动.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/自动.cpp -------------------------------------------------------------------------------- /DNFHelper/自动.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/自动.h -------------------------------------------------------------------------------- /DNFHelper/超级技能.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/超级技能.cpp -------------------------------------------------------------------------------- /DNFHelper/超级技能.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/DNFHelper/超级技能.h -------------------------------------------------------------------------------- /HelperStart/HelperStart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart.sln -------------------------------------------------------------------------------- /HelperStart/HelperStart/HelperStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/HelperStart.cpp -------------------------------------------------------------------------------- /HelperStart/HelperStart/HelperStart.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/HelperStart.vcxproj -------------------------------------------------------------------------------- /HelperStart/HelperStart/HelperStart.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/HelperStart.vcxproj.filters -------------------------------------------------------------------------------- /HelperStart/HelperStart/HelperStart.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/HelperStart.vcxproj.user -------------------------------------------------------------------------------- /HelperStart/HelperStart/inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/inject.cpp -------------------------------------------------------------------------------- /HelperStart/HelperStart/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/inject.h -------------------------------------------------------------------------------- /HelperStart/HelperStart/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/stdafx.cpp -------------------------------------------------------------------------------- /HelperStart/HelperStart/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/stdafx.h -------------------------------------------------------------------------------- /HelperStart/HelperStart/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/HelperStart/HelperStart/targetver.h -------------------------------------------------------------------------------- /InjectDll/InjectDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll.sln -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectClass.cpp -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectClass.h -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.cpp -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.h -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.rc -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.vcproj -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.vcproj.FREESKYC-1129E5.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.vcproj.FREESKYC-1129E5.Administrator.user -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.vcxproj -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.vcxproj.filters -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDll.vcxproj.user -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDllDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDllDlg.cpp -------------------------------------------------------------------------------- /InjectDll/InjectDll/InjectDllDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/InjectDllDlg.h -------------------------------------------------------------------------------- /InjectDll/InjectDll/res/InjectDll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/res/InjectDll.ico -------------------------------------------------------------------------------- /InjectDll/InjectDll/res/InjectDll.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/res/InjectDll.rc2 -------------------------------------------------------------------------------- /InjectDll/InjectDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/resource.h -------------------------------------------------------------------------------- /InjectDll/InjectDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/stdafx.cpp -------------------------------------------------------------------------------- /InjectDll/InjectDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/stdafx.h -------------------------------------------------------------------------------- /InjectDll/InjectDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/InjectDll/InjectDll/targetver.h -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/ReadMe.md -------------------------------------------------------------------------------- /pic/20180203135449.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180203135449.jpg -------------------------------------------------------------------------------- /pic/20180203210201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180203210201.jpg -------------------------------------------------------------------------------- /pic/20180204143325.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180204143325.jpg -------------------------------------------------------------------------------- /pic/20180204161712.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180204161712.jpg -------------------------------------------------------------------------------- /pic/20180204175332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180204175332.jpg -------------------------------------------------------------------------------- /pic/20180207203719.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/20180207203719.jpg -------------------------------------------------------------------------------- /pic/F7DEE10C-83FE-406E-8954-58A366E8FF49-520-00000046E47E4ADE_tmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/F7DEE10C-83FE-406E-8954-58A366E8FF49-520-00000046E47E4ADE_tmp.jpg -------------------------------------------------------------------------------- /pic/IMG_0300.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/IMG_0300.JPG -------------------------------------------------------------------------------- /pic/IMG_0318.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/pic/IMG_0318.jpg -------------------------------------------------------------------------------- /演示视频.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awsay/game-helper/HEAD/演示视频.mp4 --------------------------------------------------------------------------------