├── .gitattributes ├── .gitignore ├── Dependencies ├── curl │ ├── curl.h │ ├── curlver.h │ ├── easy.h │ ├── header.h │ ├── mprintf.h │ ├── multi.h │ ├── options.h │ ├── stdcheaders.h │ ├── system.h │ ├── typecheck-gcc.h │ ├── urlapi.h │ └── websockets.h ├── globaloffsets.h ├── globals.h ├── httplib.h ├── json.hpp ├── memcury.h ├── minhook │ └── MinHook.h ├── unreal.h ├── unreal_enums.h └── unreal_structs.h ├── FestNet.vcxproj ├── FestNet.vcxproj.filters ├── FestNet.vcxproj.user ├── LICENSE.txt ├── README.md ├── api ├── api.cpp ├── api.h └── static │ ├── index.html │ └── placeholder.png ├── dllmain.cpp └── hooks.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Dependencies/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/curl.h -------------------------------------------------------------------------------- /Dependencies/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/curlver.h -------------------------------------------------------------------------------- /Dependencies/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/easy.h -------------------------------------------------------------------------------- /Dependencies/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/header.h -------------------------------------------------------------------------------- /Dependencies/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/mprintf.h -------------------------------------------------------------------------------- /Dependencies/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/multi.h -------------------------------------------------------------------------------- /Dependencies/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/options.h -------------------------------------------------------------------------------- /Dependencies/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/stdcheaders.h -------------------------------------------------------------------------------- /Dependencies/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/system.h -------------------------------------------------------------------------------- /Dependencies/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /Dependencies/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/urlapi.h -------------------------------------------------------------------------------- /Dependencies/curl/websockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/curl/websockets.h -------------------------------------------------------------------------------- /Dependencies/globaloffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/globaloffsets.h -------------------------------------------------------------------------------- /Dependencies/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/globals.h -------------------------------------------------------------------------------- /Dependencies/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/httplib.h -------------------------------------------------------------------------------- /Dependencies/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/json.hpp -------------------------------------------------------------------------------- /Dependencies/memcury.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/memcury.h -------------------------------------------------------------------------------- /Dependencies/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/minhook/MinHook.h -------------------------------------------------------------------------------- /Dependencies/unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/unreal.h -------------------------------------------------------------------------------- /Dependencies/unreal_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/unreal_enums.h -------------------------------------------------------------------------------- /Dependencies/unreal_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/Dependencies/unreal_structs.h -------------------------------------------------------------------------------- /FestNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/FestNet.vcxproj -------------------------------------------------------------------------------- /FestNet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/FestNet.vcxproj.filters -------------------------------------------------------------------------------- /FestNet.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/FestNet.vcxproj.user -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FestNet 2 | 3 | -------------------------------------------------------------------------------- /api/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/api/api.cpp -------------------------------------------------------------------------------- /api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/api/api.h -------------------------------------------------------------------------------- /api/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/api/static/index.html -------------------------------------------------------------------------------- /api/static/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/api/static/placeholder.png -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiritascend/FestNet/HEAD/hooks.hpp --------------------------------------------------------------------------------