├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── FEATURES.md ├── LICENSE ├── MalumMenu.sln ├── README.md ├── logo.png ├── nuget.config └── src ├── Cheats ├── CosmeticsUnlocker.cs ├── DoorsHandler.cs ├── MalumCheats.cs ├── MalumESP.cs ├── MalumPPMCheats.cs ├── MalumSabotageSystem.cs ├── MalumSpoof.cs ├── MinimapHandler.cs └── TracersHandler.cs ├── MalumMenu.cs ├── MalumMenu.csproj ├── Patches ├── ChatControllerPatches.cs ├── EOSManagerPatches.cs ├── HudManagerPatches.cs ├── LogicGameFlowPatches.cs ├── LogicOptionsPatches.cs ├── MapBehaviourPatches.cs ├── MeetingHudPatches.cs ├── NumberOptionPatches.cs ├── OtherPatches.cs ├── PlayerControlPatches.cs ├── PlayerPhysicsPatches.cs ├── RoleBehaviourPatches.cs ├── ShapeshifterMinigamePatches.cs ├── ShipStatusPatches.cs └── TextBoxTMPPatches.cs ├── UI ├── CheatToggles.cs ├── ConsoleUI.cs ├── DoorsUI.cs ├── MenuUI.cs ├── TasksUI.cs └── UIStructures.cs └── Utilities ├── HerePoint.cs ├── Outfits.cs ├── PlayerPickMenu.cs └── Utils.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /MalumMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/MalumMenu.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/logo.png -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Cheats/CosmeticsUnlocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/CosmeticsUnlocker.cs -------------------------------------------------------------------------------- /src/Cheats/DoorsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/DoorsHandler.cs -------------------------------------------------------------------------------- /src/Cheats/MalumCheats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MalumCheats.cs -------------------------------------------------------------------------------- /src/Cheats/MalumESP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MalumESP.cs -------------------------------------------------------------------------------- /src/Cheats/MalumPPMCheats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MalumPPMCheats.cs -------------------------------------------------------------------------------- /src/Cheats/MalumSabotageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MalumSabotageSystem.cs -------------------------------------------------------------------------------- /src/Cheats/MalumSpoof.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MalumSpoof.cs -------------------------------------------------------------------------------- /src/Cheats/MinimapHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/MinimapHandler.cs -------------------------------------------------------------------------------- /src/Cheats/TracersHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Cheats/TracersHandler.cs -------------------------------------------------------------------------------- /src/MalumMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/MalumMenu.cs -------------------------------------------------------------------------------- /src/MalumMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/MalumMenu.csproj -------------------------------------------------------------------------------- /src/Patches/ChatControllerPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/ChatControllerPatches.cs -------------------------------------------------------------------------------- /src/Patches/EOSManagerPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/EOSManagerPatches.cs -------------------------------------------------------------------------------- /src/Patches/HudManagerPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/HudManagerPatches.cs -------------------------------------------------------------------------------- /src/Patches/LogicGameFlowPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/LogicGameFlowPatches.cs -------------------------------------------------------------------------------- /src/Patches/LogicOptionsPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/LogicOptionsPatches.cs -------------------------------------------------------------------------------- /src/Patches/MapBehaviourPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/MapBehaviourPatches.cs -------------------------------------------------------------------------------- /src/Patches/MeetingHudPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/MeetingHudPatches.cs -------------------------------------------------------------------------------- /src/Patches/NumberOptionPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/NumberOptionPatches.cs -------------------------------------------------------------------------------- /src/Patches/OtherPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/OtherPatches.cs -------------------------------------------------------------------------------- /src/Patches/PlayerControlPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/PlayerControlPatches.cs -------------------------------------------------------------------------------- /src/Patches/PlayerPhysicsPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/PlayerPhysicsPatches.cs -------------------------------------------------------------------------------- /src/Patches/RoleBehaviourPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/RoleBehaviourPatches.cs -------------------------------------------------------------------------------- /src/Patches/ShapeshifterMinigamePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/ShapeshifterMinigamePatches.cs -------------------------------------------------------------------------------- /src/Patches/ShipStatusPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/ShipStatusPatches.cs -------------------------------------------------------------------------------- /src/Patches/TextBoxTMPPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Patches/TextBoxTMPPatches.cs -------------------------------------------------------------------------------- /src/UI/CheatToggles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/CheatToggles.cs -------------------------------------------------------------------------------- /src/UI/ConsoleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/ConsoleUI.cs -------------------------------------------------------------------------------- /src/UI/DoorsUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/DoorsUI.cs -------------------------------------------------------------------------------- /src/UI/MenuUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/MenuUI.cs -------------------------------------------------------------------------------- /src/UI/TasksUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/TasksUI.cs -------------------------------------------------------------------------------- /src/UI/UIStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/UI/UIStructures.cs -------------------------------------------------------------------------------- /src/Utilities/HerePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Utilities/HerePoint.cs -------------------------------------------------------------------------------- /src/Utilities/Outfits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Utilities/Outfits.cs -------------------------------------------------------------------------------- /src/Utilities/PlayerPickMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Utilities/PlayerPickMenu.cs -------------------------------------------------------------------------------- /src/Utilities/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astra1dev/MalumMenu/HEAD/src/Utilities/Utils.cs --------------------------------------------------------------------------------