├── ImGui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_render.cpp ├── imgui_render.h ├── imgui_widgets.cpp ├── impl │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_win32.cpp │ └── imgui_impl_win32.h ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h └── vector.h ├── Libraries ├── Binaries │ ├── MinHook-Release.lib │ └── discord-rpc.lib └── Include │ ├── Discord │ ├── discord_register.h │ └── discord_rpc.h │ ├── JSON │ └── json.hpp │ ├── MinHook │ └── MinHook.h │ └── fmt │ ├── chrono.h │ ├── color.h │ ├── core.h │ ├── format-inl.h │ ├── format.h │ ├── locale.h │ ├── ostream.h │ ├── posix.h │ ├── printf.h │ ├── ranges.h │ └── time.h ├── README.md ├── UI ├── AbstractOption.hpp ├── AbstractSubmenu.hpp ├── BaseOption.hpp ├── BaseSubmenu.hpp ├── BoolOption.hpp ├── ChooseOption.hpp ├── NumberOption.hpp ├── PlayerSubOption.hpp ├── PlayerSubmenu.hpp ├── RegularOption.hpp ├── RegularSubmenu.hpp ├── SubOption.hpp ├── TextBox.hpp ├── UIManager.cpp └── UIManager.hpp └── src ├── Colors.hpp ├── Common.cpp ├── Common.hpp ├── Crossmap.hpp ├── CustomText.cpp ├── CustomText.hpp ├── D3DRenderer.cpp ├── D3DRenderer.hpp ├── Fiberscript.cpp ├── Fiberscript.hpp ├── Functions.cpp ├── Functions.hpp ├── Game.cpp ├── Game.hpp ├── Hashes.hpp ├── HeaderManager.hpp ├── Hooking.cpp ├── Hooking.hpp ├── Invoker.hpp ├── Keyboard.hpp ├── Levels.hpp ├── Lists.hpp ├── LogScript.cpp ├── LogScript.hpp ├── Logger.cpp ├── Logger.hpp ├── Memory.hpp ├── MemoryEdit.cpp ├── MemoryEdit.hpp ├── MenuScript.cpp ├── MenuScript.hpp ├── Mystic.cpp ├── Mystic.vcxproj ├── NativeSpoofer.hpp ├── Natives.hpp ├── NetworkThreadHandoff.hpp ├── Script.hpp ├── ScriptCallback.cpp ├── ScriptCallback.hpp ├── ScriptGlobal.hpp ├── ScriptManager.cpp ├── ScriptManager.hpp ├── Settings.hpp ├── SignatureScanner.hpp ├── Structs.hpp ├── SubMenus.hpp ├── TPScript.cpp ├── TPScript.h ├── TeleportManager.h ├── Timer.hpp ├── Translation.hpp ├── Types.hpp ├── Util.hpp ├── Utils.cpp ├── Utils.hpp ├── VMTHook.hpp ├── enums.hpp ├── fmt.cpp ├── fonts.cpp └── fonts.hpp /ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imconfig.h -------------------------------------------------------------------------------- /ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui.cpp -------------------------------------------------------------------------------- /ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui.h -------------------------------------------------------------------------------- /ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /ImGui/imgui_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_render.cpp -------------------------------------------------------------------------------- /ImGui/imgui_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_render.h -------------------------------------------------------------------------------- /ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /ImGui/impl/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/impl/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /ImGui/impl/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/impl/imgui_impl_dx9.h -------------------------------------------------------------------------------- /ImGui/impl/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/impl/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /ImGui/impl/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/impl/imgui_impl_win32.h -------------------------------------------------------------------------------- /ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /ImGui/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/ImGui/vector.h -------------------------------------------------------------------------------- /Libraries/Binaries/MinHook-Release.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Binaries/MinHook-Release.lib -------------------------------------------------------------------------------- /Libraries/Binaries/discord-rpc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Binaries/discord-rpc.lib -------------------------------------------------------------------------------- /Libraries/Include/Discord/discord_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/Discord/discord_register.h -------------------------------------------------------------------------------- /Libraries/Include/Discord/discord_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/Discord/discord_rpc.h -------------------------------------------------------------------------------- /Libraries/Include/JSON/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/JSON/json.hpp -------------------------------------------------------------------------------- /Libraries/Include/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/MinHook/MinHook.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/chrono.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/color.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/core.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/format-inl.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/format.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/locale.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/ostream.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/posix.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/printf.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/ranges.h -------------------------------------------------------------------------------- /Libraries/Include/fmt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/Libraries/Include/fmt/time.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/README.md -------------------------------------------------------------------------------- /UI/AbstractOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/AbstractOption.hpp -------------------------------------------------------------------------------- /UI/AbstractSubmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/AbstractSubmenu.hpp -------------------------------------------------------------------------------- /UI/BaseOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/BaseOption.hpp -------------------------------------------------------------------------------- /UI/BaseSubmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/BaseSubmenu.hpp -------------------------------------------------------------------------------- /UI/BoolOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/BoolOption.hpp -------------------------------------------------------------------------------- /UI/ChooseOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/ChooseOption.hpp -------------------------------------------------------------------------------- /UI/NumberOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/NumberOption.hpp -------------------------------------------------------------------------------- /UI/PlayerSubOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/PlayerSubOption.hpp -------------------------------------------------------------------------------- /UI/PlayerSubmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/PlayerSubmenu.hpp -------------------------------------------------------------------------------- /UI/RegularOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/RegularOption.hpp -------------------------------------------------------------------------------- /UI/RegularSubmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/RegularSubmenu.hpp -------------------------------------------------------------------------------- /UI/SubOption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/SubOption.hpp -------------------------------------------------------------------------------- /UI/TextBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/TextBox.hpp -------------------------------------------------------------------------------- /UI/UIManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/UIManager.cpp -------------------------------------------------------------------------------- /UI/UIManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/UI/UIManager.hpp -------------------------------------------------------------------------------- /src/Colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Colors.hpp -------------------------------------------------------------------------------- /src/Common.cpp: -------------------------------------------------------------------------------- 1 | #include "Common.hpp" 2 | -------------------------------------------------------------------------------- /src/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Common.hpp -------------------------------------------------------------------------------- /src/Crossmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Crossmap.hpp -------------------------------------------------------------------------------- /src/CustomText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/CustomText.cpp -------------------------------------------------------------------------------- /src/CustomText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/CustomText.hpp -------------------------------------------------------------------------------- /src/D3DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/D3DRenderer.cpp -------------------------------------------------------------------------------- /src/D3DRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/D3DRenderer.hpp -------------------------------------------------------------------------------- /src/Fiberscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Fiberscript.cpp -------------------------------------------------------------------------------- /src/Fiberscript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Fiberscript.hpp -------------------------------------------------------------------------------- /src/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Functions.cpp -------------------------------------------------------------------------------- /src/Functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Functions.hpp -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Game.hpp -------------------------------------------------------------------------------- /src/Hashes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Hashes.hpp -------------------------------------------------------------------------------- /src/HeaderManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/HeaderManager.hpp -------------------------------------------------------------------------------- /src/Hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Hooking.cpp -------------------------------------------------------------------------------- /src/Hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Hooking.hpp -------------------------------------------------------------------------------- /src/Invoker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Invoker.hpp -------------------------------------------------------------------------------- /src/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Keyboard.hpp -------------------------------------------------------------------------------- /src/Levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Levels.hpp -------------------------------------------------------------------------------- /src/Lists.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Lists.hpp -------------------------------------------------------------------------------- /src/LogScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/LogScript.cpp -------------------------------------------------------------------------------- /src/LogScript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/LogScript.hpp -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Logger.hpp -------------------------------------------------------------------------------- /src/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Memory.hpp -------------------------------------------------------------------------------- /src/MemoryEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/MemoryEdit.cpp -------------------------------------------------------------------------------- /src/MemoryEdit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/MemoryEdit.hpp -------------------------------------------------------------------------------- /src/MenuScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/MenuScript.cpp -------------------------------------------------------------------------------- /src/MenuScript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/MenuScript.hpp -------------------------------------------------------------------------------- /src/Mystic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Mystic.cpp -------------------------------------------------------------------------------- /src/Mystic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Mystic.vcxproj -------------------------------------------------------------------------------- /src/NativeSpoofer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/NativeSpoofer.hpp -------------------------------------------------------------------------------- /src/Natives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Natives.hpp -------------------------------------------------------------------------------- /src/NetworkThreadHandoff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/NetworkThreadHandoff.hpp -------------------------------------------------------------------------------- /src/Script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Script.hpp -------------------------------------------------------------------------------- /src/ScriptCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/ScriptCallback.cpp -------------------------------------------------------------------------------- /src/ScriptCallback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/ScriptCallback.hpp -------------------------------------------------------------------------------- /src/ScriptGlobal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/ScriptGlobal.hpp -------------------------------------------------------------------------------- /src/ScriptManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/ScriptManager.cpp -------------------------------------------------------------------------------- /src/ScriptManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/ScriptManager.hpp -------------------------------------------------------------------------------- /src/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Settings.hpp -------------------------------------------------------------------------------- /src/SignatureScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/SignatureScanner.hpp -------------------------------------------------------------------------------- /src/Structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Structs.hpp -------------------------------------------------------------------------------- /src/SubMenus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/SubMenus.hpp -------------------------------------------------------------------------------- /src/TPScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/TPScript.cpp -------------------------------------------------------------------------------- /src/TPScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/TPScript.h -------------------------------------------------------------------------------- /src/TeleportManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/TeleportManager.h -------------------------------------------------------------------------------- /src/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Timer.hpp -------------------------------------------------------------------------------- /src/Translation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Translation.hpp -------------------------------------------------------------------------------- /src/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Types.hpp -------------------------------------------------------------------------------- /src/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Util.hpp -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/Utils.hpp -------------------------------------------------------------------------------- /src/VMTHook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/VMTHook.hpp -------------------------------------------------------------------------------- /src/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/enums.hpp -------------------------------------------------------------------------------- /src/fmt.cpp: -------------------------------------------------------------------------------- 1 | #include "fmt/format-inl.h" 2 | -------------------------------------------------------------------------------- /src/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/fonts.cpp -------------------------------------------------------------------------------- /src/fonts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanghost117/Spooky.Best-Initial-Source-Leak/HEAD/src/fonts.hpp --------------------------------------------------------------------------------