Hexen: Beyond Heretic: Difference between revisions

From LANCommander
(Created new page for Hexen: Beyond Heretic)
 
No edit summary
 
Line 14: Line 14:
{{Game.ActionBox
{{Game.ActionBox
|Actions =  
|Actions =  
{{Game.ActionBox.Row|Name = Play Coop|Path = {InstallDir}\Hexen.bat|Arguments = |WorkingDirectory = |Primary = True}}
{{Game.ActionBox.Row|Name = Play Hexen: Beyond Heretic|Path = {InstallDir}\zandronum.exe|Arguments = -iwad "{InstallDir}/hexen.wad" -config zandronum.ini -savedir saves|WorkingDirectory = |Primary = True}}
{{Game.ActionBox.Row|Name = Play Deathmatch|Path = {InstallDir}\Hexen_dm.bat|Arguments = |WorkingDirectory = |Primary = True}}
}}
}}



Latest revision as of 00:45, 22 February 2024

Developers
Presage SoftwareRaven Software
Publishers
id SoftwareGT Interactive Software
Release Date
Windows: October 30, 1995
Genres
PuzzleShooterRole-playing (RPG)
View at PCGamingWiki

Actions

Name Path Arguments Working Directory Primary
Play Hexen: Beyond Heretic {InstallDir}\zandronum.exe -iwad "{InstallDir}/hexen.wad" -config zandronum.ini -savedir saves True

Install Script

#Updates bat file launchers to the server address and correct ports
######################################################################
$LauncherCoop = "$InstallDirectory\Hexen.bat"
$LauncherDM = "$InstallDirectory\Hexen_dm.bat"
$uri = New-Object System.Uri($ServerAddress)
$Server = $uri.Host
$Server_COOP = $Server + ":10670"
$Server_DM = $Server + ":10671"
# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Pattern '^zandronum.exe -connect (.+)' -Substitution "zandronum.exe -connect ""$Server_COOP"" -iwad ""hexen.wad""" -FilePath "$LauncherCoop"
Write-ReplaceContentInFile -Pattern '^zandronum.exe -connect (.+)' -Substitution "zandronum.exe -connect ""$Server_DM"" -iwad ""hexen.wad""" -FilePath -FilePath "$LauncherDM"
#######################################################################

#Updates Screen Resolution to match desktop resolution
#######################################################################
$Username=$env:username
$Config = "$InstallDirectory\zandronum-$Username.ini"
Copy-Item -Path "$InstallDirectory\zandronum.ini" -Destination "$Config" -Recurse

# Bounds are accessible by $Display.Bounds.Width and $Display.Bounds.Height
$Display = Get-PrimaryDisplay

# Use regex to replace text within a file. Quotes are escaped by double quoting ("")
Write-ReplaceContentInFile -Pattern '^con_virtualheight=(.+)' -Substitution "con_virtualheight=$($Display.Bounds.Height)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^con_virtualwidth=(.+)' -Substitution "con_virtualwidth=$($Display.Bounds.Width)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^vid_defheight=(.+)' -Substitution "vid_defheight=$($Display.Bounds.Height)" -FilePath "$Config"
Write-ReplaceContentInFile -Pattern '^vid_defwidth=(.+)' -Substitution "vid_defwidth=$($Display.Bounds.Width)" -FilePath "$Config"
#######################################################################

Name Change Script

#Updates name= to the player who is on lan commander
#######################################################################
$Username=$env:username
$Config = "$InstallDirectory\zandronum-$Username.ini"
Write-ReplaceContentInFile -Pattern '^name=(.+)' -Substitution "name=$NewPlayerAlias" -FilePath "$Config"
#######################################################################