Skip to content

Commit 9d59f4f

Browse files
committed
v1.1.2 Source Code
Support for ModExplorer
1 parent 4b99c3a commit 9d59f4f

4 files changed

Lines changed: 32 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010

1111
</div>
1212

13-
---
14-
13+
#
1514
This mod unlocks the possibility to show more than 15 players on screen during an meeting hud, vitals and shapeshifter menu.
1615

1716
Works on **latest** Among Us Steam version.
@@ -27,6 +26,7 @@ Works on **latest** Among Us Steam version.
2726

2827
| Mod Version | Among Us - Version | Downloads |
2928
|-------------|--------------------|-------------------------------------------------------------------------------------------------|
29+
| v1.1.2 | 17.0.0 - 17.2.1 | [Download](https://github.com/raspberrygitq/AleLuduMod/releases/download/v1.1.2/AleLuduMod.dll) |
3030
| v1.1.1 | 17.0.0 - 17.2.1 | [Download](https://github.com/raspberrygitq/AleLuduMod/releases/download/v1.1.1/AleLuduMod.dll) |
3131
| v1.1.0 | 16.0.0 - 16.1.0 | [Download](https://github.com/raspberrygitq/AleLuduMod/releases/download/v1.1.0/AleLuduMod.dll) |
3232

@@ -42,11 +42,12 @@ Works on **latest** Among Us Steam version.
4242
| v1.0.2 | 2024.11.26 | [Download](https://github.com/townofus-pl/AleLuduMod/releases/download/v1.0.2/AleLuduMod.dll) |
4343
| v1.0.1 | 2024.11.26 | [Download](https://github.com/townofus-pl/AleLuduMod/releases/download/v1.0.1/AleLuduMod.dll) |
4444
| v1.0.0 | 2024.11.26 | [Download](https://github.com/townofus-pl/AleLuduMod/releases/download/v1.0.0/AleLuduMod.dll) |
45-
4645
</details>
4746

4847
## Installation
49-
Drop it into `\BepInEx\plugins\` folder inside your Among Us + Modded folder installation.
48+
Drop `AleLuduMod.dll` it the **`BepInEx\plugins`** folder with other mods or download the zip package.
49+
> [!Warning]
50+
> The mod needs [BepInEx](https://builds.bepinex.dev/projects/bepinex_be) and [Reactor](https://github.com/nuclearpowered/reactor) to work properly. While **BepInEx** is used by every mod and shouldn't be a problem, without **Reactor** you can't launch the mod.
5051
5152
## Commands
5253
- `!limit <number>` - Set the maximum number of players in lobby (from 4 to 35).
@@ -62,4 +63,5 @@ Drop it into `\BepInEx\plugins\` folder inside your Among Us + Modded folder ins
6263
- [andry08/100-player-mod](https://github.com/andry08/100-player-mod) - original author of the CrowdedMod plugin (andry08)
6364
---
6465
> This mod is not affiliated with Among Us or Innersloth LLC, and the content contained therein is not endorsed or otherwise sponsored by Innersloth LLC. Portions of the materials contained herein are property of Innersloth LLC.\
65-
> © Innersloth LLC.
66+
> © Innersloth LLC.\
67+
> [License](./LICENSE)

src/AleLuduMod/AleLuduMod.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<Version>1.1.1</Version>
5+
<Version>1.1.2</Version>
66
<Authors>townofus.pl, OrzechMC, Bubeu, gitq</Authors>
77

88
<LangVersion>latest</LangVersion>
@@ -21,6 +21,11 @@
2121
<PackageReference Include="BepInEx.AutoPlugin" Version="1.1.0" PrivateAssets="all" />
2222
<PackageReference Include="BepInEx.IL2CPP.MSBuild" Version="2.1.0-rc.1" PrivateAssets="all" />
2323
</ItemGroup>
24+
25+
<ItemGroup>
26+
<EmbeddedResource Include="modinfo.json"/>
27+
<EmbeddedResource Include="Resources\**\*.*"/>
28+
</ItemGroup>
2429

2530
<Target Name="Copy" AfterTargets="Build" Condition="'$(AmongUs)' != ''">
2631
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(AmongUs)/BepInEx/plugins/" UseSymboliclinksIfPossible="true" />

src/AleLuduMod/Resources/Icon.png

61.2 KB
Loading

src/AleLuduMod/modinfo.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"Name": "AleLuduMod",
3+
"Description": "This mod unlocks the possibility to show more than 15 players on screen during an meeting hud, vitals and shapeshifter menu.",
4+
"Tags": [
5+
"hud",
6+
"mods"
7+
],
8+
"Icon": "AleLuduMod.Resources.Icon.png",
9+
"License": "MIT",
10+
"Authors": [
11+
"TownOfUs.pl",
12+
"OrzechMC",
13+
"Bubeu",
14+
"gitq"
15+
],
16+
"Links": {
17+
"Source": "https://github.com/raspberrygitq/AleLuduMod"
18+
}
19+
}

0 commit comments

Comments
 (0)