View Single Post
  #2  
Old 21-09-2007, 08:19
Heretic666 Heretic666 is offline
Junior Member
 
Join Date: Jun 2006
Location: Somewhere far beyond
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Heretic666 is on a distinguished road
It would be usefull to add that by messing around with AutoConfig.txt in the /AutoRunData folder it is possible to rearrange the quality buttons of the trailers if we want to remove some of them or even remove all of them by removing specific lines, for example in my customisation:
strangleholdmoddedmenupn3.jpg

The above was made by changing the file to this
Code:
//                                               Main
// ..................................................
Begin MainInfo
  Background "shld_autorun_v2.tga"
  TitleBar "Stranglehold"
  BlockingExe setup.exe
  BlockingExe Idriver.exe
  BlockingExe Retail-Stranglehold.exe
  LoopSound "music.wav"
  ClickSound "9mmBerta.wav"
  Icon shold.ico
End


//                                            Install
// ..................................................
Begin Button
  Background "x26y234_Install.tga"
  Position 16 234
  Action CreateProcess
  ProcessCommandLine "Stranglehold {86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F} Retail-Stranglehold.exe"
  ProcessName MwySetup.exe
  //ProcessName Disk1\Setup.exe
  Action Exit
End

//                                          Uninstall
// ..................................................
Begin Button
  Background "x127y234_Uninstall.tga"
  Position 137 234
  Action CreateProcessRegKey
  RegKey "Software\Microsoft\Windows\CurrentVersion\Uninstall\{86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F}" "UninstallString"
  Action Exit
End

//                                               Play
// ..................................................
Begin Button
  Background "x228y234_Play.tga"
  Position 258 234
  Action CreateProcessRegKey
  ProcessName Binaries\Retail-Stranglehold.exe
  RegKey "Software\Microsoft\Windows\CurrentVersion\Uninstall\{86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F}" "InstallLocation"
  Action Exit
End

//                                               Exit
// ..................................................
Begin Button
  Background "x329y234_Exit.tga"
  Position 379 234
  Action Exit
End 

//                                           HOV Logo
// ..................................................
Begin Button
  Background "x313y496_hov.tga"
  Position 313 496
End 

//                                 Trailer: HOV (low)
// ..................................................
Begin Button
  Background "x313y544_low_hov.tga"
  Position 313 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HOV_640x360.exe
End 

//                                 Trailer: HOV (med)
// ..................................................
Begin Button
  Background "x372y544_med_hov.tga"
  Position 372 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HOV_960x540.exe
End 

//                                 Trailer: HOV (hdf)
// ..................................................
Begin Button
  Background "x431y544_hi_hov.tga"
  Position 431 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HOV_1280x720.exe
End 


//                                     Blacksite Logo
// ..................................................
Begin Button
  Background "x87y496_blacksite.tga"
  Position 87 496
End 

//                           Trailer: Blacksite (low)
// ..................................................
Begin Button
  Background "x87y544_low_bs.tga"
  Position 87 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\Blacksite_640x360.exe
End 

//                           Trailer: Blacksite (med)
// ..................................................
Begin Button
  Background "x146y544_med_bs.tga"
  Position 146 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\Blacksite_960x540.exe
End 

//                           Trailer: Blacksite (hdf)
// ..................................................
Begin Button
  Background "x205y544_hi_bs.tga"
  Position 205 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\Blacksite_1280x720.exe
End 

//                                   Hard Boiled Logo
// ..................................................
Begin Button
  Background "x541y496_hardboiled.tga"
  Position 541 496
End 

//                         Trailer: Hard Boiled (low)
// ..................................................
Begin Button
  Background "x541y544_low_hb.tga"
  Position 541 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HardBoiled_640x360.exe
End 

//                         Trailer: Hard Boiled (med)
// ..................................................
Begin Button
  Background "x600y544_med_hb.tga"
  Position 600 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HardBoiled_960x540.exe
End 

//                         Trailer: Hard Boiled (hdf)
// ..................................................
Begin Button
  Background "x659y544_hi_hb.tga"
  Position 659 544
  Action CreateProcess
  ProcessName AutoRunData\Movies\HardBoiled_1280x720.exe
End
If anyone wants to remove all the videos but is annoyed by the empty "Trailers" space they can edit the AutoConfig.txt to this :
Code:
//                                               Main
// ..................................................
Begin MainInfo
  Background "shld_autorun_v2.tga"
  TitleBar "Stranglehold"
  BlockingExe setup.exe
  BlockingExe Idriver.exe
  BlockingExe Retail-Stranglehold.exe
  LoopSound "music.wav"
  ClickSound "9mmBerta.wav"
  Icon shold.ico
End


//                                            Install
// ..................................................
Begin Button
  Background "x26y234_Install.tga"
  Position 16 234
  Action CreateProcess
  ProcessCommandLine "Stranglehold {86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F} Retail-Stranglehold.exe"
  ProcessName MwySetup.exe
  //ProcessName Disk1\Setup.exe
  Action Exit
End

//                                          Uninstall
// ..................................................
Begin Button
  Background "x127y234_Uninstall.tga"
  Position 137 234
  Action CreateProcessRegKey
  RegKey "Software\Microsoft\Windows\CurrentVersion\Uninstall\{86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F}" "UninstallString"
  Action Exit
End

//                                               Play
// ..................................................
Begin Button
  Background "x228y234_Play.tga"
  Position 258 234
  Action CreateProcessRegKey
  ProcessName Binaries\Retail-Stranglehold.exe
  RegKey "Software\Microsoft\Windows\CurrentVersion\Uninstall\{86EDEF11-EFE4-46CB-8B08-9CBD4A936B1F}" "InstallLocation"
  Action Exit
End

//                                               Exit
// ..................................................
Begin Button
  Background "x329y234_Exit.tga"
  Position 379 234
  Action Exit
End
and overwrite the shld_autorun_v2.tga in /AutoRunData with the one provided here : shld_autorun_v2.rar

and they will have something like this :
strangleholdmoddedmenu2zh5.jpg

Last edited by Heretic666; 21-09-2007 at 08:25.
Reply With Quote