Quake
Developers | |
---|---|
id Software | |
Publishers | |
GT Interactive
id Software Midway Games MacSoft Games R-Comp Interactive PXL computers Sega Pulse Interactive |
|
Release Date | |
Windows: June 22, 1996 | |
Genres | |
Shooter | |
View at PCGamingWiki |
Actions
Name | Path | Arguments | Working Directory | Primary |
---|---|---|---|---|
Play | GLQUAKE.exe | True | ||
Play | darkplaces.exe | True |
Name Change Script
$NewName = $args[0]
$InstallDir = $PSScriptRoot
function Write-ReplaceContentInFile([string]$Regex, [string]$Replacement, [string]$FilePath)
{
$content = (Get-Content $FilePath) -replace $Regex, $Replacement
[IO.File]::WriteAllLines($FilePath, $content)
}
Write-ReplaceContentInFile -Regex '^_cl_name (.+)' -Replacement "_cl_name ""$NewName""" -FilePath "$InstallDir\Id1\config.cfg"