Skip to content

anna685/AmongUsMemory

 
 

Repository files navigation

AmongUsMemory

image

Don't ask me how to draw a radar :)

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! Please!
After the game is updated, it will require offset update.

offset update guide here : https://github.com/shlifedev/AmongUsMemory/blob/master/OffsetGuide.md
it's very easy. does not require il2cpp dumper.


How to Use

  1. Download Source Code
  2. Add Reference AmongUsMemory Your Project
  3. Now, Let's Write Code!

Example Start Cheating.

      
       // 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);
       }
       

You can get/set player memory. ex) IsImposter Position IsDead InVent ..etc

Example Cheat

This is my private cheat :) https://www.youtube.com/watch?v=Cfk9_wNjEto&feature=youtu.be

About

my among us hacking utility

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%