Giter Site home page Giter Site logo

amongusmemory's Introduction

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

amongusmemory's People

Contributors

shlifedev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.