├── .gitignore ├── PacketStudio64.dll ├── Pyx.sln ├── Pyx ├── ImGui │ ├── d3d10_ps.hlsl │ ├── d3d10_vs.hlsl │ ├── d3d11_ps.hlsl │ ├── d3d11_vs.hlsl │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_dx10.cpp │ ├── imgui_impl_dx10.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── Lua │ ├── LuaCompat.h │ ├── LuaContext.h │ ├── LuaIntf.h │ ├── LuaRef.h │ ├── LuaState.h │ ├── impl │ │ ├── CppArg.h │ │ ├── CppBindClass.h │ │ ├── CppBindModule.h │ │ ├── CppFunction.h │ │ ├── CppInvoke.h │ │ ├── CppObject.h │ │ ├── LuaException.h │ │ └── LuaType.h │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ └── src │ │ ├── CppBindClass.cpp │ │ ├── CppBindModule.cpp │ │ ├── CppFunction.cpp │ │ ├── CppObject.cpp │ │ ├── LuaCompat.cpp │ │ ├── LuaRef.cpp │ │ ├── LuaState.cpp │ │ └── QtLuaIntf.cpp ├── MaterialDesign │ ├── Font.h │ └── IconsMaterialDesign.h ├── MinHook │ ├── include │ │ └── MinHook.h │ └── src │ │ ├── HDE │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hook.c │ │ ├── trampoline.c │ │ └── trampoline.h ├── Pyx.vcxproj ├── Pyx.vcxproj.filters ├── Pyx │ ├── Graphics │ │ ├── GraphicsContext.cpp │ │ ├── GraphicsContext.h │ │ ├── Gui │ │ │ ├── IGui.h │ │ │ ├── ImGuiImpl.cpp │ │ │ └── ImGuiImpl.h │ │ ├── GuiContext.cpp │ │ ├── GuiContext.h │ │ └── Renderer │ │ │ ├── D3D11Renderer.cpp │ │ │ ├── D3D11Renderer.h │ │ │ ├── D3D11StateBlock.h │ │ │ ├── D3D9Renderer.cpp │ │ │ ├── D3D9Renderer.h │ │ │ ├── DXGI.cpp │ │ │ ├── DXGI.h │ │ │ └── IRenderer.h │ ├── Input │ │ ├── InputContext.cpp │ │ └── InputContext.h │ ├── Math │ │ ├── Vector3.cpp │ │ └── Vector3.h │ ├── Patch │ │ ├── Detour.h │ │ ├── IHook.h │ │ ├── IPatch.h │ │ ├── PatchContext.cpp │ │ ├── PatchContext.h │ │ └── VmtHook.h │ ├── Pyx.h │ ├── PyxContext.cpp │ ├── PyxContext.h │ ├── PyxInitSettings.h │ ├── Scripting │ │ ├── LuaModules │ │ │ ├── ImGui.h │ │ │ ├── Mapping_WString.h │ │ │ ├── Override.h │ │ │ ├── Pyx_FileSystem.h │ │ │ ├── Pyx_Input.h │ │ │ ├── Pyx_Memory.h │ │ │ ├── Pyx_Scripting.h │ │ │ └── Pyx_Win32.h │ │ ├── Script.cpp │ │ ├── Script.h │ │ ├── ScriptDef.cpp │ │ ├── ScriptDef.h │ │ ├── ScriptingContext.cpp │ │ └── ScriptingContext.h │ ├── Threading │ │ ├── Thread.h │ │ ├── ThreadContext.cpp │ │ └── ThreadContext.h │ └── Utility │ │ ├── Callbacks.h │ │ ├── IniFile.h │ │ ├── String.h │ │ └── XorString.h ├── Roboto │ └── Font.h └── SET_ENVIRONMENT_VARIABLES.bat ├── Tester ├── EntryPoint.cpp ├── Source.cpp ├── Tester.vcxproj └── Tester.vcxproj.filters └── scripts └── PacketStudio ├── Games.lua ├── Games ├── BlackDesert.lua ├── BlackDesert_Opcodes.lua ├── WoW624.lua └── WoW624_Opcodes.lua ├── Global.lua ├── Parsers.lua ├── Views ├── Enums.lua ├── PacketParserEditor.lua └── PacketTypes.lua ├── main.lua └── script.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /PacketStudio64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/PacketStudio64.dll -------------------------------------------------------------------------------- /Pyx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx.sln -------------------------------------------------------------------------------- /Pyx/ImGui/d3d10_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/d3d10_ps.hlsl -------------------------------------------------------------------------------- /Pyx/ImGui/d3d10_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/d3d10_vs.hlsl -------------------------------------------------------------------------------- /Pyx/ImGui/d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/d3d11_ps.hlsl -------------------------------------------------------------------------------- /Pyx/ImGui/d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/d3d11_vs.hlsl -------------------------------------------------------------------------------- /Pyx/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imconfig.h -------------------------------------------------------------------------------- /Pyx/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui.cpp -------------------------------------------------------------------------------- /Pyx/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui.h -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx10.h -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Pyx/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /Pyx/ImGui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/stb_rect_pack.h -------------------------------------------------------------------------------- /Pyx/ImGui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/stb_textedit.h -------------------------------------------------------------------------------- /Pyx/ImGui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/ImGui/stb_truetype.h -------------------------------------------------------------------------------- /Pyx/Lua/LuaCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/LuaCompat.h -------------------------------------------------------------------------------- /Pyx/Lua/LuaContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/LuaContext.h -------------------------------------------------------------------------------- /Pyx/Lua/LuaIntf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/LuaIntf.h -------------------------------------------------------------------------------- /Pyx/Lua/LuaRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/LuaRef.h -------------------------------------------------------------------------------- /Pyx/Lua/LuaState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/LuaState.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppArg.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppBindClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppBindClass.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppBindModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppBindModule.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppFunction.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppInvoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppInvoke.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/CppObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/CppObject.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/LuaException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/LuaException.h -------------------------------------------------------------------------------- /Pyx/Lua/impl/LuaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/impl/LuaType.h -------------------------------------------------------------------------------- /Pyx/Lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lapi.c -------------------------------------------------------------------------------- /Pyx/Lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lapi.h -------------------------------------------------------------------------------- /Pyx/Lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lauxlib.c -------------------------------------------------------------------------------- /Pyx/Lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lauxlib.h -------------------------------------------------------------------------------- /Pyx/Lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lbaselib.c -------------------------------------------------------------------------------- /Pyx/Lua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lbitlib.c -------------------------------------------------------------------------------- /Pyx/Lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lcode.c -------------------------------------------------------------------------------- /Pyx/Lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lcode.h -------------------------------------------------------------------------------- /Pyx/Lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lcorolib.c -------------------------------------------------------------------------------- /Pyx/Lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lctype.c -------------------------------------------------------------------------------- /Pyx/Lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lctype.h -------------------------------------------------------------------------------- /Pyx/Lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldblib.c -------------------------------------------------------------------------------- /Pyx/Lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldebug.c -------------------------------------------------------------------------------- /Pyx/Lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldebug.h -------------------------------------------------------------------------------- /Pyx/Lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldo.c -------------------------------------------------------------------------------- /Pyx/Lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldo.h -------------------------------------------------------------------------------- /Pyx/Lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ldump.c -------------------------------------------------------------------------------- /Pyx/Lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lfunc.c -------------------------------------------------------------------------------- /Pyx/Lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lfunc.h -------------------------------------------------------------------------------- /Pyx/Lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lgc.c -------------------------------------------------------------------------------- /Pyx/Lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lgc.h -------------------------------------------------------------------------------- /Pyx/Lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/linit.c -------------------------------------------------------------------------------- /Pyx/Lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/liolib.c -------------------------------------------------------------------------------- /Pyx/Lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/llex.c -------------------------------------------------------------------------------- /Pyx/Lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/llex.h -------------------------------------------------------------------------------- /Pyx/Lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/llimits.h -------------------------------------------------------------------------------- /Pyx/Lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lmathlib.c -------------------------------------------------------------------------------- /Pyx/Lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lmem.c -------------------------------------------------------------------------------- /Pyx/Lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lmem.h -------------------------------------------------------------------------------- /Pyx/Lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/loadlib.c -------------------------------------------------------------------------------- /Pyx/Lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lobject.c -------------------------------------------------------------------------------- /Pyx/Lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lobject.h -------------------------------------------------------------------------------- /Pyx/Lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lopcodes.c -------------------------------------------------------------------------------- /Pyx/Lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lopcodes.h -------------------------------------------------------------------------------- /Pyx/Lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/loslib.c -------------------------------------------------------------------------------- /Pyx/Lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lparser.c -------------------------------------------------------------------------------- /Pyx/Lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lparser.h -------------------------------------------------------------------------------- /Pyx/Lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lprefix.h -------------------------------------------------------------------------------- /Pyx/Lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lstate.c -------------------------------------------------------------------------------- /Pyx/Lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lstate.h -------------------------------------------------------------------------------- /Pyx/Lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lstring.c -------------------------------------------------------------------------------- /Pyx/Lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lstring.h -------------------------------------------------------------------------------- /Pyx/Lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lstrlib.c -------------------------------------------------------------------------------- /Pyx/Lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ltable.c -------------------------------------------------------------------------------- /Pyx/Lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ltable.h -------------------------------------------------------------------------------- /Pyx/Lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ltablib.c -------------------------------------------------------------------------------- /Pyx/Lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ltm.c -------------------------------------------------------------------------------- /Pyx/Lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/ltm.h -------------------------------------------------------------------------------- /Pyx/Lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lua.c -------------------------------------------------------------------------------- /Pyx/Lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lua.h -------------------------------------------------------------------------------- /Pyx/Lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lua.hpp -------------------------------------------------------------------------------- /Pyx/Lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/luac.c -------------------------------------------------------------------------------- /Pyx/Lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/luaconf.h -------------------------------------------------------------------------------- /Pyx/Lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lualib.h -------------------------------------------------------------------------------- /Pyx/Lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lundump.c -------------------------------------------------------------------------------- /Pyx/Lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lundump.h -------------------------------------------------------------------------------- /Pyx/Lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lutf8lib.c -------------------------------------------------------------------------------- /Pyx/Lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lvm.c -------------------------------------------------------------------------------- /Pyx/Lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lvm.h -------------------------------------------------------------------------------- /Pyx/Lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lzio.c -------------------------------------------------------------------------------- /Pyx/Lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/lzio.h -------------------------------------------------------------------------------- /Pyx/Lua/src/CppBindClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/CppBindClass.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/CppBindModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/CppBindModule.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/CppFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/CppFunction.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/CppObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/CppObject.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/LuaCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/LuaCompat.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/LuaRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/LuaRef.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/LuaState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/LuaState.cpp -------------------------------------------------------------------------------- /Pyx/Lua/src/QtLuaIntf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Lua/src/QtLuaIntf.cpp -------------------------------------------------------------------------------- /Pyx/MaterialDesign/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MaterialDesign/Font.h -------------------------------------------------------------------------------- /Pyx/MaterialDesign/IconsMaterialDesign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MaterialDesign/IconsMaterialDesign.h -------------------------------------------------------------------------------- /Pyx/MinHook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/include/MinHook.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/hde32.c -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/hde32.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/hde64.c -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/hde64.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/pstdint.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/table32.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/HDE/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/HDE/table64.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/buffer.c -------------------------------------------------------------------------------- /Pyx/MinHook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/buffer.h -------------------------------------------------------------------------------- /Pyx/MinHook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/hook.c -------------------------------------------------------------------------------- /Pyx/MinHook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/trampoline.c -------------------------------------------------------------------------------- /Pyx/MinHook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/MinHook/src/trampoline.h -------------------------------------------------------------------------------- /Pyx/Pyx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx.vcxproj -------------------------------------------------------------------------------- /Pyx/Pyx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx.vcxproj.filters -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/GraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/GraphicsContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/GraphicsContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Gui/IGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Gui/IGui.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Gui/ImGuiImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Gui/ImGuiImpl.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Gui/ImGuiImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Gui/ImGuiImpl.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/GuiContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/GuiContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/GuiContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/GuiContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/D3D11Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/D3D11Renderer.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/D3D11Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/D3D11Renderer.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/D3D11StateBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/D3D11StateBlock.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/D3D9Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/D3D9Renderer.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/D3D9Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/D3D9Renderer.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/DXGI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/DXGI.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/DXGI.h -------------------------------------------------------------------------------- /Pyx/Pyx/Graphics/Renderer/IRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Graphics/Renderer/IRenderer.h -------------------------------------------------------------------------------- /Pyx/Pyx/Input/InputContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Input/InputContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Input/InputContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Input/InputContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Math/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Math/Vector3.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Math/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Math/Vector3.h -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/Detour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/Detour.h -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/IHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/IHook.h -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/IPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/IPatch.h -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/PatchContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/PatchContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/PatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/PatchContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Patch/VmtHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Patch/VmtHook.h -------------------------------------------------------------------------------- /Pyx/Pyx/Pyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Pyx.h -------------------------------------------------------------------------------- /Pyx/Pyx/PyxContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/PyxContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/PyxContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/PyxContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/PyxInitSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/PyxInitSettings.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/ImGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/ImGui.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Mapping_WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Mapping_WString.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Override.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Pyx_FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Pyx_FileSystem.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Pyx_Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Pyx_Input.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Pyx_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Pyx_Memory.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Pyx_Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Pyx_Scripting.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/LuaModules/Pyx_Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/LuaModules/Pyx_Win32.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/Script.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/Script.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/ScriptDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/ScriptDef.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/ScriptDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/ScriptDef.h -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/ScriptingContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/ScriptingContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Scripting/ScriptingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Scripting/ScriptingContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Threading/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Threading/Thread.h -------------------------------------------------------------------------------- /Pyx/Pyx/Threading/ThreadContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Threading/ThreadContext.cpp -------------------------------------------------------------------------------- /Pyx/Pyx/Threading/ThreadContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Threading/ThreadContext.h -------------------------------------------------------------------------------- /Pyx/Pyx/Utility/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Utility/Callbacks.h -------------------------------------------------------------------------------- /Pyx/Pyx/Utility/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Utility/IniFile.h -------------------------------------------------------------------------------- /Pyx/Pyx/Utility/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Utility/String.h -------------------------------------------------------------------------------- /Pyx/Pyx/Utility/XorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Pyx/Utility/XorString.h -------------------------------------------------------------------------------- /Pyx/Roboto/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/Roboto/Font.h -------------------------------------------------------------------------------- /Pyx/SET_ENVIRONMENT_VARIABLES.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Pyx/SET_ENVIRONMENT_VARIABLES.bat -------------------------------------------------------------------------------- /Tester/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Tester/EntryPoint.cpp -------------------------------------------------------------------------------- /Tester/Source.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tester/Tester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Tester/Tester.vcxproj -------------------------------------------------------------------------------- /Tester/Tester.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/Tester/Tester.vcxproj.filters -------------------------------------------------------------------------------- /scripts/PacketStudio/Games.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Games.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Games/BlackDesert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Games/BlackDesert.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Games/BlackDesert_Opcodes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Games/BlackDesert_Opcodes.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Games/WoW624.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Games/WoW624.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Games/WoW624_Opcodes.lua: -------------------------------------------------------------------------------- 1 | -- Packet studio 2 | -- Copryright hardcpp@gmail.com 3 | 4 | WoW624Opcodes = {} -------------------------------------------------------------------------------- /scripts/PacketStudio/Global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Global.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Parsers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Parsers.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Views/Enums.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Views/Enums.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Views/PacketParserEditor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Views/PacketParserEditor.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/Views/PacketTypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/Views/PacketTypes.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/main.lua -------------------------------------------------------------------------------- /scripts/PacketStudio/script.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/PacketStudio/HEAD/scripts/PacketStudio/script.def --------------------------------------------------------------------------------