Skip to content

Commit 21f738b

Browse files
authored
Add Ready or Not support (#160)
Include basic support for Ready or Not Signed-off-by: Ryan Keane <the.ra2.ifv@gmail.com>
1 parent 785be77 commit 21f738b

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

games/game_readyornot.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from ..basic_game import BasicGame
2+
3+
4+
class ReadyOrNotGame(BasicGame):
5+
Name = "Ready or Not Support Plugin"
6+
Author = "Ra2-IFV"
7+
Version = "0.0.0.1"
8+
9+
GameName = "Ready or Not"
10+
GameShortName = "readyornot"
11+
GameNexusName = "readyornot"
12+
GameValidShortNames = ["ron"]
13+
# GameNexusId = "readyornot"
14+
GameBinary = "ReadyOrNot/Binaries/Win64/ReadyOrNot-Win64-Shipping.exe"
15+
GameLauncher = "ReadyOrNot.exe"
16+
GameDataPath = "ReadyOrNot/Content/Paks"
17+
GameDocumentsDirectory = "%USERPROFILE%/AppData/Local/ReadyOrNot"
18+
GameIniFiles = [
19+
"%GAME_DOCUMENTS%/Saved/Config/Windows/Game.ini",
20+
"%GAME_DOCUMENTS%/Saved/Config/Windows/GameUserSettings.ini",
21+
]
22+
GameSavesDirectory = "%USERPROFILE%/AppData/Local/ReadyOrNot/Saved/SaveGames"
23+
GameSaveExtension = "sav"
24+
GameSteamId = 1144200

0 commit comments

Comments
 (0)