- If you have latest engineoffset.cs, please create pull request. thanks for your help.
You are responsible for any disadvantages caused by using this src.
It only works with the version downloaded from Steam.
Please use only for study. Do not abuse it!
When game update require update new offset, offset update guide here! : https://github.com/shlifedev/AmongUsMemory/blob/master/OffsetGuide.md
It's very easy. does not require il2cpp dumper.
- Download Source Code
- Add Reference AmongUsMemory Your Project
- Now, Let's write your code and build project!
// Readed Player List
static List<PlayerData> playerDatas = new List<PlayerData>();
// Update Your Cheat
static void UpdateCheat()
{
while (true)
{
foreach (var data in playerDatas)
{
Console.WriteLine("Find Player Name :: " + Utils.ReadString(data.PlayerInfo.Value.PlayerName));
}
System.Threading.Thread.Sleep(100);
}
}
// Update Player List EveryGame.
static void OnDetectJoinNewGame()
{
playerDatas = HamsterCheese.AmongUsMemory.Cheese.GetAllPlayers();
}
static void Main(string[] args)
{
// Cheat Init
if (HamsterCheese.AmongUsMemory.Cheese.Init())
{
// Update Player Data When Join New Map.
HamsterCheese.AmongUsMemory.Cheese.ObserveShipStatus(OnDetectJoinNewGame);
// Start Your Cheat
CancellationTokenSource cts = new CancellationTokenSource();
Task.Factory.StartNew(
UpdateCheat
, cts.Token);
}
System.Threading.Thread.Sleep(1000000);
}
This is my private cheat :) https://www.youtube.com/watch?v=Cfk9_wNjEto&feature=youtu.be
offset is no longer updated.
if you have new offset pull request plz.