Baldur's Gate II: Shadows of Amn

From LANCommander
Revision as of 06:53, 31 July 2023 by DoctorDalek (talk | contribs) (Created page with "Category:Games {{Game.InfoBox |Cover = cover.jpg |Release Date = {{Game.InfoBox.ReleaseDate|Windows|September 21, 2000}} | PCGamingWiki = Baldur%27s_Gate_II:_Shadows_of_Amn }} {{Game.ActionBox |Actions = {{Game.ActionBox.Row|Name = Play|Path = Baldur.exe|Arguments = |WorkingDirectory = |Primary = True}} }} {{Game.Scripts.Install |Name = Install Script |Description = |RequiresAdmin = False |Contents = <syntaxhighlight lang="powershell" line> $InstallDir = $PSScrip...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Release Date
Windows: September 21, 2000
View at PCGamingWiki

Actions

Name Path Arguments Working Directory Primary
Play Baldur.exe True

Install Script

$InstallDir = $PSScriptRoot

$config = @"
CREATE TABLE options (
	section string,
	name string,
	value string
);
INSERT INTO options ROWS (
	'Fonts',	'ko_KR',	'UNBOM',
	'Fonts',	'zh_CN',	'SIMSUN',
	'Fonts',	'ja_JP',	'MSGOTHIC',
	'Fonts',	'ru_RU',	'PERMIAN',
	'Fonts',	'uk_UA',	'PERMIAN',
	'Window',	'Full Screen',	'1',
	'Graphics',	'version',	'4.6.0 NVIDIA 472.12',
	'Graphics',	'renderer',	'NVIDIA GeForce RTX 3080 Ti/PCIe/SSE2',
	'Graphics',	'vendor',	'NVIDIA Corporation',
	'MOVIES',	'LOGO',	'1',
	'MOVIES',	'INTRO15F',	'1',
	'Multiplayer',	'Last Protocol Used',	'2',
	'Multiplayer',	'Player Name',	'DoctorDalek12345678901234567890123456789',
	'Multiplayer',	'Session Password',	'',
	'Multiplayer',	'Session Name',	'DoctorDalek1234567890123456789012345678901234567890'
);
"@

New-Item -ItemType Directory -Force -Path "$($env:USERPROFILE)\Documents\Baldur's Gate II - Enhanced Edition"

Set-Content "$($env:USERPROFILE)\Documents\Baldur's Gate II - Enhanced Edition\Baldur.ini" $config

Name Change Script

$NewName = $args[0]

function Write-ReplaceContentInFile([string]$Regex, [string]$Replacement, [string]$FilePath)
{
    $content = (Get-Content $FilePath) -replace $Regex, $Replacement
    [IO.File]::WriteAllLines($FilePath, $content)
}

# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Regex "^\s+'Multiplayer',\s+'Player Name',\s+'(.+)'," -Replacement "`t'Multiplayer',`t'Player Name',`t'$NewName'," -FilePath "$($env:USERPROFILE)\Documents\Baldur's Gate II - Enhanced Edition\Baldur.ini"
Write-ReplaceContentInFile -Regex "^\s+'Multiplayer',\s+'Session Name',\s+'(.+)'" -Replacement "`t'Multiplayer',`t'Session Name',`t'Vintage'," -FilePath "$($env:USERPROFILE)\Documents\Baldur's Gate II - Enhanced Edition\Baldur.ini"