Re: Fable Explorer Version Switcher [message #71492 is a reply to message #71491] |
Tue, 30 August 2016 14:00 |
|
lawofzero
Messages: 11 Registered: August 2016
|
|
|
|
That's quite odd, here is the script:
Toggle Spoiler
set fabletlc=C:\Games\Fable TLC
set fableanni=C:\Games\Fable Anniversary
:MAINMENU
@echo off
@color 00
title FEMan
mode con: cols=40 lines=15
CLS
echo.
echo. MANAGE FABLE VERSIONS
echo. ---------------------
echo. 1.) Install symlinks
echo. 2.) Remove symlinks
echo. 3.) Editing TLC
echo. 4.) Editing Chicken
echo. 5.) Editing Heroic
echo.
echo. q.) Quit
echo.
:CHOOSEACTION
set /p userinp= ^ Make your selection:
set userinp=%userinp:~0,1%
if /i "%userinp%"=="1" goto INSTALL
if /i "%userinp%"=="2" goto REMOVE
if /i "%userinp%"=="3" goto TLC
if /i "%userinp%"=="4" goto CHICKEN
if /i "%userinp%"=="5" goto HEROIC
if /i "%userinp%"=="q" goto QUIT
echo.Try Again...
GOTO CHOOSEACTION
:INSTALL
mkdir data
mkdir data\CompiledDefs
mkdir data\graphics
mkdir data\graphics\pc
mkdir data\lang\English
mkdir data\Levels
mkdir data\Misc\pc
mklink "data\graphics\graphics.big" "%fabletlc%\data\graphics\graphics.big"
mklink "data\graphics\pc\frontend.big" "%fabletlc%\data\graphics\pc\frontend.big"
mklink "data\graphics\pc\textures.big" "%fabletlc%\data\graphics\pc\textures.big"
mklink "data\lang\English\text.big" "%fabletlc%\data\lang\English\text.big"
mklink "data\Levels\FinalAlbion_RT.stb" "%fabletlc%\data\Levels\FinalAlbion_RT.stb"
mklink "data\Misc\pc\effects.big" "%fabletlc%\data\Misc\pc\effects.big"
mklink "Fable.exe" "%fabletlc%\Fable.exe"
echo.Symlinks installed
GOTO MAINMENU
:REMOVE
rmdir /s /q data
del Fable.exe
echo.Symlinks removed
GOTO MAINMENU
:TLC
del /q data\CompiledDefs\*
mklink "data\CompiledDefs\frontend.bin" "%fabletlc%\data\CompiledDefs\frontend.bin"
mklink "data\CompiledDefs\game.bin" "%fabletlc%\data\CompiledDefs\game.bin"
mklink "data\CompiledDefs\names.bin" "%fabletlc%\data\CompiledDefs\names.bin"
mklink "data\CompiledDefs\script.bin" "%fabletlc%\data\CompiledDefs\script.bin"
echo.Set up to edit TLC
GOTO MAINMENU
:CHICKEN
del /q data\CompiledDefs\*
mklink "data\CompiledDefs\frontend.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\frontend.bin"
mklink "data\CompiledDefs\game.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\game.bin"
mklink "data\CompiledDefs\names.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\names.bin"
mklink "data\CompiledDefs\script.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\script.bin"
echo.Set up to edit Chicken Difficulty
GOTO MAINMENU
:HEROIC
del /q data\CompiledDefs\*
mklink "data\CompiledDefs\frontend.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\frontend.bin"
mklink "data\CompiledDefs\game.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\gamehard.bin"
mklink "data\CompiledDefs\names.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\names.bin"
mklink "data\CompiledDefs\script.bin" "%fableanni%\WellingtonGame\FableData\Build\Data\CompiledDefs\Development\scripthard.bin"
echo.Set up to edit Heroic Difficulty
GOTO MAINMENU
:QUIT
exit
|
|
|