From bfeeb9aa873e6bfcc01b2dd9d5f2816222e9bade Mon Sep 17 00:00:00 2001 From: denverquane Date: Sun, 1 Nov 2020 11:03:10 -0700 Subject: [PATCH 1/4] Adds beta offsets for v2020.10.22s --- AmongUsCapture/Settings.cs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/AmongUsCapture/Settings.cs b/AmongUsCapture/Settings.cs index 5fe4f309..3e28b0ef 100644 --- a/AmongUsCapture/Settings.cs +++ b/AmongUsCapture/Settings.cs @@ -37,23 +37,23 @@ public interface IGameOffsets [Option(Alias = "GameHash", DefaultValue = "74C7DF9C5C722CC641018880F29F2C4C8F52C0720DFC808FD0060D0E7552F192")] string GameHash { get; } - - [Option(Alias = "Offsets.Client", DefaultValue = 0x1468840)] + + [Option(Alias = "Offsets.Client", DefaultValue = 0x144BB30)] int AmongUsClientOffset { get; set; } - - [Option(Alias = "Offsets.GameData", DefaultValue = 0x1468864)] + + [Option(Alias = "Offsets.GameData", DefaultValue = 0x144BA30)] int GameDataOffset { get; set; } - - [Option(Alias = "Offsets.MeetingHud", DefaultValue = 0x14686A0)] + + [Option(Alias = "Offsets.MeetingHud", DefaultValue = 0x144B7CC)] int MeetingHudOffset { get; set; } - - [Option(Alias = "Offsets.GameStartManager", DefaultValue = 0x13FB424)] + + [Option(Alias = "Offsets.GameStartManager", DefaultValue = 0x13A715C)] int GameStartManagerOffset { get; set; } - - [Option(Alias = "Offsets.HudManager", DefaultValue = 0x13EEB44)] + + [Option(Alias = "Offsets.HudManager", DefaultValue = 0x139B29C)] int HudManagerOffset { get; set; } - - [Option(Alias = "Offsets.ServerManager", DefaultValue = 0x13F14E4)] + + [Option(Alias = "Offsets.ServerManager", DefaultValue = 0x139CF7c)] int ServerManagerOffset { get; set; } } } \ No newline at end of file From 337c550cc2762b171681702425c7c61a3f52fc4f Mon Sep 17 00:00:00 2001 From: Denver Quane Date: Sun, 1 Nov 2020 11:08:19 -0700 Subject: [PATCH 2/4] Update dotnet-build.yml --- .github/workflows/dotnet-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml index 10e599b8..81d2554f 100644 --- a/.github/workflows/dotnet-build.yml +++ b/.github/workflows/dotnet-build.yml @@ -5,7 +5,7 @@ on: push: branches: [master] pull_request: - branches: [master] + branches: [master, betaOffsets] jobs: build: From af8595b94a0b1ea2d8dbd8c0428a388fc0952734 Mon Sep 17 00:00:00 2001 From: Denver Quane Date: Sun, 1 Nov 2020 11:09:15 -0700 Subject: [PATCH 3/4] Update dotnet-build.yml --- .github/workflows/dotnet-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml index 81d2554f..10e599b8 100644 --- a/.github/workflows/dotnet-build.yml +++ b/.github/workflows/dotnet-build.yml @@ -5,7 +5,7 @@ on: push: branches: [master] pull_request: - branches: [master, betaOffsets] + branches: [master] jobs: build: From 66e31c0606e365b1447b8da56453024825d48ebc Mon Sep 17 00:00:00 2001 From: CarbonNeuron <16768821+CarbonNeuron@users.noreply.github.com> Date: Wed, 11 Nov 2020 13:05:01 -0600 Subject: [PATCH 4/4] Update dotnet-build.yml --- .github/workflows/dotnet-build.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml index 10e599b8..93713265 100644 --- a/.github/workflows/dotnet-build.yml +++ b/.github/workflows/dotnet-build.yml @@ -18,20 +18,13 @@ jobs: with: dotnet-version: 3.1 - name: Install dependencies - run: dotnet restore "AmongUsCapture\AmongUsCapture.csproj" + run: dotnet restore "AUCapture-WPF\AUCapture-WPF.csproj" - name: Publish run: | - dotnet publish "AmongUsCapture\AmongUsCapture.csproj" -p:PublishProfile=FolderProfile -p:AssemblyVersion=0.0.1 - dotnet publish "AmongUsCapture\AmongUsCapture.csproj" -p:PublishProfile=FolderProfile1 -p:AssemblyVersion=0.0.1 + dotnet publish "AUCapture-WPF\AUCapture-WPF.csproj" -p:PublishProfile=FolderProfile -p:AssemblyVersion=0.0.1 - name: Relocate run: | - mv AmongUsCapture\\bin\\publish\\32Bit-2\\AmongUsCapture.exe AmongUsCapture-Dependant.exe - mv AmongUsCapture\\bin\\publish\\32Bit\\AmongUsCapture.exe AmongUsCapture.exe - - name: AmongUsCapture-x64-beta - uses: actions/upload-artifact@v2 - with: - name: AmongUsCapture-Dependant-beta - path: AmongUsCapture-Dependant.exe + mv AUCapture-WPF\\bin\\Release\\netcoreapp3.1\\publish\\AUCapture-WPF.exe AmongUsCapture.exe - name: AmongUsCapture-beta uses: actions/upload-artifact@v2 with: