├── .gitignore ├── README.md └── Rust-Internal-Always-Updated-main ├── rust base.sln └── rust base ├── Glob.hpp ├── Main.cpp ├── Misc.cpp ├── Misc.h ├── aimbot.cpp ├── aimbot.h ├── baseplayer.h ├── ddraw.h ├── esp.cpp ├── esp.h ├── game ├── classes.cpp ├── classes.hpp ├── hooks.hpp ├── il2cpp.cpp ├── il2cpp.hpp ├── offsets.cpp └── offsets.hpp ├── gui_framework.h ├── hinclude.h ├── includes.hpp ├── ongui.h ├── performanceui.h ├── rust base.vcxproj ├── rust base.vcxproj.filters ├── rust base.vcxproj.user ├── sky.cpp ├── sky.hpp └── utils ├── lazy_importer.hpp ├── math.cpp ├── math.hpp ├── memory.cpp ├── memory.hpp ├── returnspoofer.asm ├── returnspoofer.hpp └── xor.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/README.md -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base.sln -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/Glob.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/Main.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/Misc.cpp: -------------------------------------------------------------------------------- 1 | #include "Misc.h" 2 | 3 | namespace Misc { 4 | 5 | } -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/Misc.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/aimbot.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/aimbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/aimbot.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/baseplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/baseplayer.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/ddraw.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/esp.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/esp.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/classes.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/classes.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/hooks.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/il2cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/il2cpp.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/il2cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/il2cpp.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/offsets.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/game/offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/game/offsets.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/gui_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/gui_framework.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/hinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/hinclude.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/includes.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/ongui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/ongui.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/performanceui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/performanceui.h -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj.filters -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/rust base.vcxproj.user -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/sky.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/sky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/sky.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/lazy_importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/lazy_importer.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/math.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/math.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/memory.cpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/memory.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/returnspoofer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/returnspoofer.asm -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/returnspoofer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/returnspoofer.hpp -------------------------------------------------------------------------------- /Rust-Internal-Always-Updated-main/rust base/utils/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Device1337/Rust-Internal-Always-Updated/HEAD/Rust-Internal-Always-Updated-main/rust base/utils/xor.hpp --------------------------------------------------------------------------------