Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shlifedev/among-us-memory
my among us hacking utility
https://github.com/shlifedev/among-us-memory
among-us among-us-cheat amongus cheat game-cheat
Last synced: 3 months ago
JSON representation
my among us hacking utility
- Host: GitHub
- URL: https://github.com/shlifedev/among-us-memory
- Owner: shlifedev
- Created: 2020-08-18T14:19:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T17:47:49.000Z (over 2 years ago)
- Last Synced: 2024-06-25T11:45:07.141Z (5 months ago)
- Topics: among-us, among-us-cheat, amongus, cheat, game-cheat
- Language: C#
- Homepage:
- Size: 1.29 MB
- Stars: 195
- Watchers: 27
- Forks: 60
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AmongUsMemory (Deprecated)
2022-03-20: No longer update this repository.It's Among us hacking example for students.
![image](https://user-images.githubusercontent.com/49047211/91510992-9581fe00-e919-11ea-8be1-93e333de762b.png)
[blog post](https://blog.shlife.dev/4)
You are responsible for any disadvantages caused by using this src.
It only working on downloaded from steam..Please use only for study. Do not abuse it!
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. Let's write your cheat code and build project!
### Example Start Cheating.
```cs
// Readed Player List
static List playerDatas = new List();
// 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 CheatThis is my private cheat :)
![](https://github.com/shlifedev/AmongUsPublic/blob/master/Example.PNG)
https://www.youtube.com/watch?v=Cfk9_wNjEto&feature=youtu.be
`offset is no longer updated.`
`if you have new offset pull request plz.`