All Projects → shlifedev → Amongusmemory

shlifedev / Amongusmemory

my among us hacking utility

Labels

Projects that are alternatives of or similar to Amongusmemory

Xena
Lightweight, lighting-fast Java Based Cross-Platform CSGO Cheat
Stars: ✭ 69 (-61.67%)
Mutual labels:  cheat
Christwareamongus
A cheat for the recently popular fad game Among Us
Stars: ✭ 105 (-41.67%)
Mutual labels:  cheat
Csgo Cheat Base
simple csgo internal base.
Stars: ✭ 111 (-38.33%)
Mutual labels:  cheat
Csharp8cheatsheet
C# 8 Cheat Sheet, Default Interface Methods, Pattern Matching, Indices and Ranges, Nullable Reference Types, Asynchronous Streams, Caller Expression Attribute ,Static Local Functions, Default in Deconstruction., Alternative Interpolated Verbatim Strings, Using Declarations, Relax Ordering of ref and partial Modifiers, Disposable ref structs, Generic Attributes, Null Coalescing Assignment ,Disposable ref structs
Stars: ✭ 73 (-59.44%)
Mutual labels:  cheat
Vue Cheat Sheet
📚 My cheat sheet for vue.js most basic stuff https://boussadjra.github.io/vue-cheat-sheet/
Stars: ✭ 90 (-50%)
Mutual labels:  cheat
Osiris
Free open-source game cheat for Counter-Strike: Global Offensive, written in modern C++. GUI powered by Dear ImGui.
Stars: ✭ 1,851 (+928.33%)
Mutual labels:  cheat
Pcsgolh
PCSGOLH - Pointless Counter-Strike: Global Offensive Lua Hooks. A open-source Lua API for CS:GO hacking written in modern C++
Stars: ✭ 56 (-68.89%)
Mutual labels:  cheat
Pubg Pak Hacker
use windows kernel deriver hidden file and itself to Bypass BE
Stars: ✭ 157 (-12.78%)
Mutual labels:  cheat
Active Directory Exploitation Cheat Sheet
A cheat sheet that contains common enumeration and attack methods for Windows Active Directory.
Stars: ✭ 1,392 (+673.33%)
Mutual labels:  cheat
Mod s0beit sa
Multi-purpose cheat tool for GTA San Andreas and SA:MP
Stars: ✭ 110 (-38.89%)
Mutual labels:  cheat
Dainsleif
⚡️ A simple model cheat for CSGO a.k.a. Counter-Strike: Global Offensive.
Stars: ✭ 74 (-58.89%)
Mutual labels:  cheat
Anubis
Free open-source training software / cheat for Counter-Strike: Global Offensive, written in C.
Stars: ✭ 81 (-55%)
Mutual labels:  cheat
Pyspark Cheatsheet
🐍 Quick reference guide to common patterns & functions in PySpark.
Stars: ✭ 108 (-40%)
Mutual labels:  cheat
Survivio Plus
Easy chicken dinners, the hax way.
Stars: ✭ 72 (-60%)
Mutual labels:  cheat
C Sharp Cheatsheet
C# Cheatsheet
Stars: ✭ 111 (-38.33%)
Mutual labels:  cheat
Dll hook Rs
Rust code to show how hooking in rust with a dll works.
Stars: ✭ 57 (-68.33%)
Mutual labels:  cheat
Ugtrain
The Universal Elite Game Trainer for CLI (Linux game trainer research project)
Stars: ✭ 107 (-40.56%)
Mutual labels:  cheat
Python Cheatsheet
Collection of Python code snippets and cheatsheets (made for humans)
Stars: ✭ 176 (-2.22%)
Mutual labels:  cheat
Volkswagen
🙈 Volkswagen detects when your tests are being run in a CI server, and makes them pass.
Stars: ✭ 12,148 (+6648.89%)
Mutual labels:  cheat
Aristois Legit
Full project files for aristois, Counter-Strike: Global Offensive cheat.
Stars: ✭ 110 (-38.89%)
Mutual labels:  cheat

AmongUsMemory

  • If you have latest engineoffset.cs, please create pull request. thanks for your help.

image

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.


How to Use

  1. Download Source Code
  2. Add Reference AmongUsMemory Your Project
  3. Now, Let's write your code and build project!

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

Example Cheat

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].