├── .gitignore ├── LICENSE ├── Lure.sln ├── Lure ├── Helpers.cpp ├── Hooks │ ├── CRoblox.cpp │ ├── Context.cpp │ ├── Crypt.cpp │ ├── Http.cpp │ ├── ServerReplicator.cpp │ └── StandardOut.cpp ├── Include │ ├── Configuration.h │ ├── Helpers.h │ ├── Hooks │ │ ├── CRoblox.h │ │ ├── Context.h │ │ ├── Crypt.h │ │ ├── Http.h │ │ ├── ServerReplicator.h │ │ └── StandardOut.h │ ├── Patches.h │ ├── framework.h │ └── pch.h ├── Lure.vcxproj ├── Lure.vcxproj.filters ├── Patches.cpp ├── Patches.h ├── dllmain.cpp └── pch.cpp ├── README.md └── vcpkg.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/LICENSE -------------------------------------------------------------------------------- /Lure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure.sln -------------------------------------------------------------------------------- /Lure/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Helpers.cpp -------------------------------------------------------------------------------- /Lure/Hooks/CRoblox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/CRoblox.cpp -------------------------------------------------------------------------------- /Lure/Hooks/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/Context.cpp -------------------------------------------------------------------------------- /Lure/Hooks/Crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/Crypt.cpp -------------------------------------------------------------------------------- /Lure/Hooks/Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/Http.cpp -------------------------------------------------------------------------------- /Lure/Hooks/ServerReplicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/ServerReplicator.cpp -------------------------------------------------------------------------------- /Lure/Hooks/StandardOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Hooks/StandardOut.cpp -------------------------------------------------------------------------------- /Lure/Include/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Configuration.h -------------------------------------------------------------------------------- /Lure/Include/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Helpers.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/CRoblox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/CRoblox.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/Context.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/Crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/Crypt.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/Http.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/ServerReplicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/ServerReplicator.h -------------------------------------------------------------------------------- /Lure/Include/Hooks/StandardOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Hooks/StandardOut.h -------------------------------------------------------------------------------- /Lure/Include/Patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/Patches.h -------------------------------------------------------------------------------- /Lure/Include/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/framework.h -------------------------------------------------------------------------------- /Lure/Include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Include/pch.h -------------------------------------------------------------------------------- /Lure/Lure.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Lure.vcxproj -------------------------------------------------------------------------------- /Lure/Lure.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Lure.vcxproj.filters -------------------------------------------------------------------------------- /Lure/Patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Patches.cpp -------------------------------------------------------------------------------- /Lure/Patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/Patches.h -------------------------------------------------------------------------------- /Lure/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/Lure/dllmain.cpp -------------------------------------------------------------------------------- /Lure/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/README.md -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lrre-foss/lure/HEAD/vcpkg.json --------------------------------------------------------------------------------