Actions
Name |
Path |
Arguments |
Working Directory |
Primary |
Play Singleplayer |
gta2.exe |
|
|
True |
Run GTA2 Manager |
gta2 manager.exe |
|
|
False |
Play Multiplayer |
gta2 manager.exe |
|
|
True |
Name Change Script
This script requires admin access to function properly
$NewName = $args[0]
if ($NewName.Length -gt 24) {
$NewName = $NewName.Substring(0, 24)
}
New-Item -Path "HKLM:\SOFTWARE\WOW6432Node\DMA Design Ltd"
New-Item -Path "HKLM:\SOFTWARE\WOW6432Node\DMA Design Ltd\GTA2"
New-Item -Path "HKLM:\SOFTWARE\WOW6432Node\DMA Design Ltd\GTA2\Network"
New-ItemProperty -Path "HKLM:\SOFTWARE\WOW6432Node\DMA Design Ltd\GTA2\Network" -Name "PlayerName" -Value $NewName -Force