Marathon Infinity: Difference between revisions
DoctorDalek (talk | contribs) (Created page with "Category:Games {{Game.InfoBox |Cover = cover.jpg |Developers = {{Game.InfoBox.Developer|Bungie}} |Publishers = {{Game.InfoBox.Publisher|Bungie}} |Release Date = {{Game.InfoBox.ReleaseDate|Windows|October 15, 1996}} |Genres = {{Game.InfoBox.Genre|Shooter}} | PCGamingWiki = Marathon_Infinity }} {{Game.ActionBox |Actions = {{Game.ActionBox.Row|Name = Play|Path = Marathon Infinity.exe|Arguments = |WorkingDirectory = |Primary = True}} }} {{Game.Scripts.NameChange |Name...") |
DoctorDalek (talk | contribs) No edit summary |
||
Line 10: | Line 10: | ||
|Genres = | |Genres = | ||
{{Game.InfoBox.Genre|Shooter}} | {{Game.InfoBox.Genre|Shooter}} | ||
| PCGamingWiki = Marathon_Infinity | |PCGamingWiki = Marathon_Infinity}} | ||
}} | |||
{{Game.ActionBox | {{Game.ActionBox | ||
|Actions = | |Actions = | ||
{{Game.ActionBox.Row|Name = Play|Path = Marathon Infinity.exe|Arguments = |WorkingDirectory = |Primary = True}} | {{Game.ActionBox.Row|Name = Play|Path = {InstallDir}\Marathon Infinity.exe|Arguments = |WorkingDirectory = |Primary = True}} | ||
}} | }} | ||
{{Game.Scripts. | |||
|Name = | {{Game.Scripts.Install | ||
|Name = Install Script | |||
|Description = | |Description = | ||
|RequiresAdmin = False | |RequiresAdmin = False | ||
|Contents = <syntaxhighlight lang="powershell" line> | |Contents = | ||
$ | <syntaxhighlight lang="powershell" line> | ||
$AppData = $env:LOCALAPPDATA | |||
New-Item -ItemType Directory -Force -Path "$AppData\AlephOne" | |||
Copy-Item -Path "$InstallDirectory\Preferences" -Destination "$AppData\AlephOne\Marathon Infinity Preferences" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
{{Game.Scripts. | {{Game.Scripts.NameChange | ||
|Name = | |Name = Name Change Script | ||
|Description = | |Description = | ||
|RequiresAdmin = False | |RequiresAdmin = False | ||
|Contents = <syntaxhighlight lang="powershell" line> | |Contents = | ||
$ | <syntaxhighlight lang="powershell" line> | ||
$AppData = $env:LOCALAPPDATA | |||
Write-ReplaceContentInFile -Pattern "player name=""[^""]+""" -Substitution "player name=`"$NewPlayerAlias`"" -FilePath "$AppData\AlephOne\Marathon Infinity Preferences" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} |
Latest revision as of 03:29, 6 January 2024
Developers | |
---|---|
Bungie | |
Publishers | |
Bungie | |
Release Date | |
Windows: October 15, 1996 | |
Genres | |
Shooter | |
View at PCGamingWiki |
Actions
Name | Path | Arguments | Working Directory | Primary |
---|---|---|---|---|
Play | {InstallDir}\Marathon Infinity.exe | True |
Install Script
$AppData = $env:LOCALAPPDATA
New-Item -ItemType Directory -Force -Path "$AppData\AlephOne"
Copy-Item -Path "$InstallDirectory\Preferences" -Destination "$AppData\AlephOne\Marathon Infinity Preferences"
Name Change Script
$AppData = $env:LOCALAPPDATA
Write-ReplaceContentInFile -Pattern "player name=""[^""]+""" -Substitution "player name=`"$NewPlayerAlias`"" -FilePath "$AppData\AlephOne\Marathon Infinity Preferences"