Skip to content

Commit

Permalink
Update 4.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallöris committed Jul 11, 2022
1 parent f87e7b8 commit 5829cb3
Show file tree
Hide file tree
Showing 56 changed files with 474 additions and 85 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: AutoBuild .NET

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/cache@v2
with:
path: |
~/.nuget/packages
~/.cache/bepinex
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/checkout@v2
with:
submodules: true

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x

- name: Build
run: dotnet build TheOtherRoles/TheOtherRoles.csproj --configuration Release

- name: Upload TheOtherRoles
uses: actions/upload-artifact@v2
with:
name: TheOtherRoles.dll
path: TheOtherRoles/bin/Release/netstandard2.1/TheOtherRoles.dll
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein
# Releases
| Among Us - Version| Mod Version | Link |
|----------|-------------|-----------------|
| 2022.6.21| v4.1.6| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.1.6/TheOtherRoles.zip)
| 2022.6.21| v4.1.5| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.1.5/TheOtherRoles.zip)
| 2022.3.29| v4.1.4| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.1.4/TheOtherRoles.zip)
| 2022.3.29| v4.1.3| [Download](https://github.com/Eisbison/TheOtherRoles/releases/download/v4.1.3/TheOtherRoles.zip)
Expand Down Expand Up @@ -107,6 +108,24 @@ The [Role Assignment](#role-assignment) sections explains how the roles are bein
<details>
<summary>Click to show the Changelog</summary>

**Version 4.1.6**
- Added Sound Effects: Most buttons / role funcionalities now have a sound!
- Added a mod option: Enable Sound Effects
- Added an option: Hide After Death Modifiers: Modifiers which will have an effect after your death will be hidden while the player is alive so they cant be claimed / called
- Added lobby timer sync, so that each player can see when the lobby will close on Vanilla Servers
- Added a credits screen to the main menu
- Re-Added the player's last position to the map in meetings
- Changed the custom region ui
- Fixed a bug where the Spy's Name appearing in white to the impostors in the intro cutscene
- Fixed a bug where the zoom function for ghosts would zoom in too far
- Fixed a bug where custom color names did not work (TOR is now compatible with colorblind mode)
- Fixed a bug where the ninjas color name did not become invisible in colorblind mode
- Fixed a bug where Morphling & Camouflager did not work correctly for skins with adaptive color
- Fixed a bug where the first kill shield was given to the wrong lover
- Fixed a bug where Pursuer appeared in the GuesserUI even when Lawyer was disabled
- Fixed a bug where a guessed Guesser could still guess if they had the guesser ui open
- Fixed a bug where the role assignment did not work properly (fingers crossed)

**Version 4.1.5**
- Updated to Among Us version 2022.6.21
- Added Custom servers (Modded EU & Modded NA). Thanks to [miniduikboot](https://github.com/miniduikboot) & GD
Expand Down Expand Up @@ -1219,12 +1238,12 @@ Because of the vents the Engineer might not be able to start some tasks using th

## Sheriff
### **Team: Crewmates**
The Sheriff has the ability to kill Impostors.\
The Sheriff has the ability to kill Impostors or Neutral roles if enabled.\
If they try to kill a Crewmate, they die instead.\
\
**NOTE:**
- If the Sheriff shoots the person the Medic shielded, the Sheriff and the shielded person **both remain unharmed**.
- If the Sheriff shoots a Mini Impostor, the Sheriff dies if the Mini is still growing up. If it's 18, the Mini Impostor dies.
- If the Sheriff shoots a Mini Impostor while growing up, nothing happens. If it's fully grown, the Mini Impostor dies.

### Game Options
| Name | Description |
Expand Down
6 changes: 6 additions & 0 deletions TheOtherRoles.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheOtherRoles", "TheOtherRoles\TheOtherRoles.csproj", "{11FBC798-BAF5-4EE5-9511-BE6DB0592F99}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TheOtherUpdater", "TheOtherUpdater\TheOtherUpdater.vcxproj", "{73A5662B-9C59-4C97-95C5-F5B2A8BBDDCA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -12,5 +14,9 @@ Global
{11FBC798-BAF5-4EE5-9511-BE6DB0592F99}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11FBC798-BAF5-4EE5-9511-BE6DB0592F99}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11FBC798-BAF5-4EE5-9511-BE6DB0592F99}.Release|Any CPU.Build.0 = Release|Any CPU
{73A5662B-9C59-4C97-95C5-F5B2A8BBDDCA}.Debug|Any CPU.ActiveCfg = Debug|Win32
{73A5662B-9C59-4C97-95C5-F5B2A8BBDDCA}.Debug|Any CPU.Build.0 = Debug|Win32
{73A5662B-9C59-4C97-95C5-F5B2A8BBDDCA}.Release|Any CPU.ActiveCfg = Release|Win32
{73A5662B-9C59-4C97-95C5-F5B2A8BBDDCA}.Release|Any CPU.Build.0 = Release|Win32
EndGlobalSection
EndGlobal
Loading

0 comments on commit 5829cb3

Please sign in to comment.