Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
90eaa94
Fix chat clipboard and ghost chat
meowchelo Jun 4, 2026
eecf90b
Add dark chat disable button
meowchelo Jun 4, 2026
3509661
Fix keybind button labels
meowchelo Jun 4, 2026
6bebb21
Bump version to 1.3.1
meowchelo Jun 4, 2026
5be509a
Fix chat extra characters and auto meeting delay label
meowchelo Jun 4, 2026
bc17ed4
Add map cooldown bypass and neutral RPC labels
meowchelo Jun 5, 2026
31b76ab
Keep mod labels only for spoofing and detection
meowchelo Jun 5, 2026
d712a98
Restore configurable menu toggle key
meowchelo Jun 5, 2026
a5ebbe8
Bump version to 1.3.2
meowchelo Jun 5, 2026
1e5a9bd
Add Pasos Limit empty RPC drop
meowchelo Jun 5, 2026
54a13a8
Fix Pasos Limit empty game data freeze
meowchelo Jun 5, 2026
3ad48f3
Guard Pasos Limit in game data coroutine
meowchelo Jun 5, 2026
4139a3b
Guard empty Hazel reads for Pasos Limit
meowchelo Jun 5, 2026
484efa4
Drop buffered empty RPC messages
meowchelo Jun 5, 2026
d24dd63
Add Pasos Limit local and host bans
meowchelo Jun 5, 2026
01aed2e
Make Anti-Pasos bans temporary
meowchelo Jun 5, 2026
8c34432
Restore full Anti-Pasos bans
meowchelo Jun 5, 2026
be66f83
Fix Anti-Pasos ban resolution
meowchelo Jun 5, 2026
2c30c30
Drop whole Pasos packets and fix bans
meowchelo Jun 5, 2026
413e6e9
Restore safe Pasos drop path
meowchelo Jun 5, 2026
2d2c38a
Add friend code line to ESP
meowchelo Jun 6, 2026
d3fecd1
Remove meeting flood limiter
meowchelo Jun 6, 2026
af928ff
Add ghost chat colors and force role controls
meowchelo Jun 12, 2026
723a758
Improve spam error log attachments
meowchelo Jun 12, 2026
00e0e1c
Limit spam error log attachments
meowchelo Jun 12, 2026
5f7a34f
Set version to 1.2.7
meowchelo Jun 12, 2026
14b6f25
Document ghost chat color support
meowchelo Jun 12, 2026
184b517
Document ghost role controls
meowchelo Jun 12, 2026
846e90f
Document force role assignment logic
meowchelo Jun 12, 2026
65e3cdb
Document local and host-only block split
meowchelo Jun 12, 2026
97f7179
Document player log diagnostics
meowchelo Jun 12, 2026
dfbc273
Set version 1.3.4 and clear spam error logs
meowchelo Jun 12, 2026
90b8e75
Persist keybind and menu preferences
meowchelo Jun 12, 2026
d636f27
Release 1.3.4
meowchelo Jun 12, 2026
042b932
Update project metadata for release 1.3.4
meowchelo Jun 12, 2026
bda1257
Update anti-cheat protections
meowchelo Jun 13, 2026
c1d3031
Update elesium
meowchelo Jun 17, 2026
68e7487
Update ElysiumModMenu
meowchelo Jun 18, 2026
57326aa
Update ElysiumModMenu v1.3.7
meowchelo Jun 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,822 changes: 0 additions & 2,822 deletions Class1.cs

This file was deleted.

3 changes: 0 additions & 3 deletions ClassLibrary10.slnx

This file was deleted.

40 changes: 40 additions & 0 deletions ElysiumModMenu.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#nullable disable
#pragma warning disable CS0162, CS0108, CS0219, CS0661, CS0660, CS8632, CS0168, CS0659
using AmongUs.Data.Player;
using AmongUs.GameOptions;
using AmongUs.InnerNet.GameDataMessages;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Unity.IL2CPP;
using BepInEx.Unity.IL2CPP.Utils;
using BepInEx.Unity.IL2CPP.Utils.Collections;
using ElysiumModMenu;
using HarmonyLib;
using Hazel;
using Il2CppInterop.Runtime.Attributes;
using Il2CppInterop.Runtime.Injection;
using Il2CppInterop.Runtime.InteropTypes.Arrays;
using InnerNet;
using RewiredConsts;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
using System.Text.RegularExpressions;
using TMPro;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.Events;
using UnityEngine.Playables;
using UnityEngine.ResourceManagement.AsyncOperations;
using UnityEngine.UI;
using static ElysiumModMenu.ElysiumModMenuGUI;
using static Rewired.UI.ControlMapper.ControlMapper;
using Color = UnityEngine.Color;
using Object = UnityEngine.Object;
using Vector3 = UnityEngine.Vector3;

390 changes: 390 additions & 0 deletions ElysiumModMenu.csproj

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions ElysiumModMenu.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Solution>
<Project Path="ElysiumModMenu.csproj" />
</Solution>
Loading