├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── amxmodx ├── configs │ └── steamtools.cfg └── scripting │ └── include │ ├── steamtools.inc │ └── steamtools_const.inc ├── appveyor.yml ├── module ├── interfaces.h ├── module.cpp ├── module.h ├── moduleconfig.h ├── msvc │ ├── module.sln │ ├── module.vcxproj │ └── module.vcxproj.filters ├── natives_gs.cpp ├── natives_gs.h ├── natives_http.cpp ├── steamtools.cpp ├── steamtools.h ├── sw_detours.cpp ├── sw_detours.h ├── sw_forwards.cpp ├── sw_forwards.h ├── sw_gameserver.cpp ├── sw_gameserver.h ├── sw_hooks.cpp ├── sw_hooks.h └── version.rc ├── product.version ├── public ├── HLTypeConversion.h ├── auto-string.h ├── memtools │ ├── CDetour │ │ ├── asm │ │ │ ├── asm.c │ │ │ └── asm.h │ │ ├── detourhelpers.h │ │ ├── detours.cpp │ │ └── detours.h │ ├── MemoryUtils.cpp │ └── MemoryUtils.h ├── module_version.h ├── sdk │ ├── amxxmodule.cpp │ └── amxxmodule.h ├── sm_memtable.h ├── sm_stringhashmap.h ├── sm_symtable.h └── sourcehook │ ├── FastDelegate.h │ ├── sh_list.h │ ├── sh_listcat.h │ ├── sh_memfuncinfo.h │ ├── sh_memory.h │ ├── sh_stack.h │ ├── sh_string.h │ ├── sh_tinyhash.h │ ├── sh_vector.h │ ├── sourcehook.cpp │ ├── sourcehook.h │ └── sourcehook_impl.h └── support ├── AMBuildScript ├── Versioning ├── checkout-deps.sh ├── configure.py ├── generate_headers.py └── versionlib ├── AMBuilder ├── versionlib.cpp └── versionlib.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/README.md -------------------------------------------------------------------------------- /amxmodx/configs/steamtools.cfg: -------------------------------------------------------------------------------- 1 | sv_setsteamaccount "" -------------------------------------------------------------------------------- /amxmodx/scripting/include/steamtools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/amxmodx/scripting/include/steamtools.inc -------------------------------------------------------------------------------- /amxmodx/scripting/include/steamtools_const.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/amxmodx/scripting/include/steamtools_const.inc -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/appveyor.yml -------------------------------------------------------------------------------- /module/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/interfaces.h -------------------------------------------------------------------------------- /module/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/module.cpp -------------------------------------------------------------------------------- /module/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/module.h -------------------------------------------------------------------------------- /module/moduleconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/moduleconfig.h -------------------------------------------------------------------------------- /module/msvc/module.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/msvc/module.sln -------------------------------------------------------------------------------- /module/msvc/module.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/msvc/module.vcxproj -------------------------------------------------------------------------------- /module/msvc/module.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/msvc/module.vcxproj.filters -------------------------------------------------------------------------------- /module/natives_gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/natives_gs.cpp -------------------------------------------------------------------------------- /module/natives_gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/natives_gs.h -------------------------------------------------------------------------------- /module/natives_http.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/steamtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/steamtools.cpp -------------------------------------------------------------------------------- /module/steamtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/steamtools.h -------------------------------------------------------------------------------- /module/sw_detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_detours.cpp -------------------------------------------------------------------------------- /module/sw_detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_detours.h -------------------------------------------------------------------------------- /module/sw_forwards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_forwards.cpp -------------------------------------------------------------------------------- /module/sw_forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_forwards.h -------------------------------------------------------------------------------- /module/sw_gameserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_gameserver.cpp -------------------------------------------------------------------------------- /module/sw_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_gameserver.h -------------------------------------------------------------------------------- /module/sw_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_hooks.cpp -------------------------------------------------------------------------------- /module/sw_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/sw_hooks.h -------------------------------------------------------------------------------- /module/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/module/version.rc -------------------------------------------------------------------------------- /product.version: -------------------------------------------------------------------------------- 1 | 1.2.0 2 | -------------------------------------------------------------------------------- /public/HLTypeConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/HLTypeConversion.h -------------------------------------------------------------------------------- /public/auto-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/auto-string.h -------------------------------------------------------------------------------- /public/memtools/CDetour/asm/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/CDetour/asm/asm.c -------------------------------------------------------------------------------- /public/memtools/CDetour/asm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/CDetour/asm/asm.h -------------------------------------------------------------------------------- /public/memtools/CDetour/detourhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/CDetour/detourhelpers.h -------------------------------------------------------------------------------- /public/memtools/CDetour/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/CDetour/detours.cpp -------------------------------------------------------------------------------- /public/memtools/CDetour/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/CDetour/detours.h -------------------------------------------------------------------------------- /public/memtools/MemoryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/MemoryUtils.cpp -------------------------------------------------------------------------------- /public/memtools/MemoryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/memtools/MemoryUtils.h -------------------------------------------------------------------------------- /public/module_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/module_version.h -------------------------------------------------------------------------------- /public/sdk/amxxmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sdk/amxxmodule.cpp -------------------------------------------------------------------------------- /public/sdk/amxxmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sdk/amxxmodule.h -------------------------------------------------------------------------------- /public/sm_memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sm_memtable.h -------------------------------------------------------------------------------- /public/sm_stringhashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sm_stringhashmap.h -------------------------------------------------------------------------------- /public/sm_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sm_symtable.h -------------------------------------------------------------------------------- /public/sourcehook/FastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/FastDelegate.h -------------------------------------------------------------------------------- /public/sourcehook/sh_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_list.h -------------------------------------------------------------------------------- /public/sourcehook/sh_listcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_listcat.h -------------------------------------------------------------------------------- /public/sourcehook/sh_memfuncinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_memfuncinfo.h -------------------------------------------------------------------------------- /public/sourcehook/sh_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_memory.h -------------------------------------------------------------------------------- /public/sourcehook/sh_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_stack.h -------------------------------------------------------------------------------- /public/sourcehook/sh_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_string.h -------------------------------------------------------------------------------- /public/sourcehook/sh_tinyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_tinyhash.h -------------------------------------------------------------------------------- /public/sourcehook/sh_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sh_vector.h -------------------------------------------------------------------------------- /public/sourcehook/sourcehook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sourcehook.cpp -------------------------------------------------------------------------------- /public/sourcehook/sourcehook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sourcehook.h -------------------------------------------------------------------------------- /public/sourcehook/sourcehook_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/public/sourcehook/sourcehook_impl.h -------------------------------------------------------------------------------- /support/AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/AMBuildScript -------------------------------------------------------------------------------- /support/Versioning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/Versioning -------------------------------------------------------------------------------- /support/checkout-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/checkout-deps.sh -------------------------------------------------------------------------------- /support/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/configure.py -------------------------------------------------------------------------------- /support/generate_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/generate_headers.py -------------------------------------------------------------------------------- /support/versionlib/AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/versionlib/AMBuilder -------------------------------------------------------------------------------- /support/versionlib/versionlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/versionlib/versionlib.cpp -------------------------------------------------------------------------------- /support/versionlib/versionlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arkshine/SteamTools/HEAD/support/versionlib/versionlib.h --------------------------------------------------------------------------------