├── .gitattributes ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Project Reboot.sln ├── Project Reboot ├── Project Reboot.vcxproj ├── Project Reboot.vcxproj.filters ├── abilities.cpp ├── abilities.h ├── ai.cpp ├── ai.h ├── build.cpp ├── build.h ├── calendar.cpp ├── calendar.h ├── datatables.cpp ├── datatables.h ├── definitions.h ├── discord.cpp ├── discord.h ├── dllmain.cpp ├── edit.cpp ├── edit.h ├── enums.h ├── events.cpp ├── events.h ├── fontawesome.h ├── gui.cpp ├── gui.h ├── harvesting.cpp ├── harvesting.h ├── helper.cpp ├── helper.h ├── interaction.cpp ├── interaction.h ├── inventory.cpp ├── inventory.h ├── json.hpp ├── log.cpp ├── log.h ├── loot.cpp ├── loot.h ├── mem.cpp ├── mem.h ├── memcury.h ├── moderation.cpp ├── moderation.h ├── patterns.h ├── processevent.cpp ├── processevent.h ├── replication.cpp ├── replication.h ├── server.cpp ├── server.h ├── structs.cpp ├── structs.h ├── team.h ├── teams.cpp ├── zone.cpp └── zone.h ├── README.md └── other ├── inc ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_stdlib.cpp │ ├── imgui_stdlib.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h └── MinHook.h └── lib └── minhook.x64.lib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/LICENSE -------------------------------------------------------------------------------- /Project Reboot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot.sln -------------------------------------------------------------------------------- /Project Reboot/Project Reboot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/Project Reboot.vcxproj -------------------------------------------------------------------------------- /Project Reboot/Project Reboot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/Project Reboot.vcxproj.filters -------------------------------------------------------------------------------- /Project Reboot/abilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/abilities.cpp -------------------------------------------------------------------------------- /Project Reboot/abilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/abilities.h -------------------------------------------------------------------------------- /Project Reboot/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/ai.cpp -------------------------------------------------------------------------------- /Project Reboot/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/ai.h -------------------------------------------------------------------------------- /Project Reboot/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/build.cpp -------------------------------------------------------------------------------- /Project Reboot/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/build.h -------------------------------------------------------------------------------- /Project Reboot/calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/calendar.cpp -------------------------------------------------------------------------------- /Project Reboot/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/calendar.h -------------------------------------------------------------------------------- /Project Reboot/datatables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/datatables.cpp -------------------------------------------------------------------------------- /Project Reboot/datatables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/datatables.h -------------------------------------------------------------------------------- /Project Reboot/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/definitions.h -------------------------------------------------------------------------------- /Project Reboot/discord.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project Reboot/discord.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /Project Reboot/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/dllmain.cpp -------------------------------------------------------------------------------- /Project Reboot/edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/edit.cpp -------------------------------------------------------------------------------- /Project Reboot/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/edit.h -------------------------------------------------------------------------------- /Project Reboot/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/enums.h -------------------------------------------------------------------------------- /Project Reboot/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/events.cpp -------------------------------------------------------------------------------- /Project Reboot/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/events.h -------------------------------------------------------------------------------- /Project Reboot/fontawesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/fontawesome.h -------------------------------------------------------------------------------- /Project Reboot/gui.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Project Reboot/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/gui.h -------------------------------------------------------------------------------- /Project Reboot/harvesting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/harvesting.cpp -------------------------------------------------------------------------------- /Project Reboot/harvesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/harvesting.h -------------------------------------------------------------------------------- /Project Reboot/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/helper.cpp -------------------------------------------------------------------------------- /Project Reboot/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/helper.h -------------------------------------------------------------------------------- /Project Reboot/interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/interaction.cpp -------------------------------------------------------------------------------- /Project Reboot/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/interaction.h -------------------------------------------------------------------------------- /Project Reboot/inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/inventory.cpp -------------------------------------------------------------------------------- /Project Reboot/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/inventory.h -------------------------------------------------------------------------------- /Project Reboot/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/json.hpp -------------------------------------------------------------------------------- /Project Reboot/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/log.cpp -------------------------------------------------------------------------------- /Project Reboot/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/log.h -------------------------------------------------------------------------------- /Project Reboot/loot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/loot.cpp -------------------------------------------------------------------------------- /Project Reboot/loot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/loot.h -------------------------------------------------------------------------------- /Project Reboot/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/mem.cpp -------------------------------------------------------------------------------- /Project Reboot/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/mem.h -------------------------------------------------------------------------------- /Project Reboot/memcury.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/memcury.h -------------------------------------------------------------------------------- /Project Reboot/moderation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/moderation.cpp -------------------------------------------------------------------------------- /Project Reboot/moderation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/moderation.h -------------------------------------------------------------------------------- /Project Reboot/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/patterns.h -------------------------------------------------------------------------------- /Project Reboot/processevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/processevent.cpp -------------------------------------------------------------------------------- /Project Reboot/processevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/processevent.h -------------------------------------------------------------------------------- /Project Reboot/replication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/replication.cpp -------------------------------------------------------------------------------- /Project Reboot/replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/replication.h -------------------------------------------------------------------------------- /Project Reboot/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/server.cpp -------------------------------------------------------------------------------- /Project Reboot/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/server.h -------------------------------------------------------------------------------- /Project Reboot/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/structs.cpp -------------------------------------------------------------------------------- /Project Reboot/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/structs.h -------------------------------------------------------------------------------- /Project Reboot/team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/team.h -------------------------------------------------------------------------------- /Project Reboot/teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/teams.cpp -------------------------------------------------------------------------------- /Project Reboot/zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/zone.cpp -------------------------------------------------------------------------------- /Project Reboot/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/Project Reboot/zone.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/README.md -------------------------------------------------------------------------------- /other/inc/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imconfig.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_stdlib.h -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /other/inc/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /other/inc/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /other/inc/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /other/inc/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/inc/MinHook.h -------------------------------------------------------------------------------- /other/lib/minhook.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milxnor/Project-Reboot/HEAD/other/lib/minhook.x64.lib --------------------------------------------------------------------------------