Far Cry
Developers | |
---|---|
Crytek Frankfurt | |
Publishers | |
Ubisoft Entertainment | |
Release Date | |
Windows: March 23, 2004 | |
Genres | |
Shooter | |
View at PCGamingWiki |
Actions
Name | Path | Arguments | Working Directory | Primary |
---|---|---|---|---|
Play | Bin32/FarCry.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 '^p_name = (.+)' -Replacement "p_name = ""$NewName""" -FilePath "$InstallDir\system.cfg"