black_imperator
Deity
- Joined
- Dec 4, 2005
- Messages
- 2,099
do you see the dural in the Civiliation part of the Pedia ?
Works fine on Win10 pro x64 without compatibility settings.does anyone know if the .exe for the games should be set on a certain compatibility?
(at)echo off
REM // "Cache Clear" created by Jhwk
REM // Simple cache clearing .bat script
REM // Make sure script is placed in ".\Ashes of Erebus" folder
REM // Use this script as the shortcut to start the game
REM // This script will ASK if you want to clear the cache
title Clear Cache
if exist "%UserProfile%\AppData\Local\My Games\beyond the sword\cache" goto :exist
if not exist "%UserProfile%\AppData\Local\My Games\beyond the sword\cache" goto :notexist
:exist
set /P c=BtS cache folder exists, delete [Y/N]?
if /I "%c%" EQU "Y" goto :delete
if /I "%c%" EQU "N" goto :notdelete
goto :exist
:delete
cls
@RD /S /Q "%UserProfile%\AppData\Local\My Games\beyond the sword\cache"
echo Directory deleted, press any key to exit.
pause > nul
goto :exit
:notdelete
cls
echo Directory not deleted, press any key to exit.
pause > nul
cls
goto :exit
:notexist
cls
set /P c=BtS cache folder doen't exist, click any key to exit.
pause > nul
cls
goto :exit
:exit
cd %~dp0
start AoELauncher.exe
exit /B
(at)echo off
REM // "Cache Clear" created by Jhwk
REM // Simple cache clearing .bat script
REM // Make sure script is placed in ".\Ashes of Erebus" folder
REM // Use this script as the shortcut to start the game
REM // This script will ALWAYS clear the cache
RD /S /Q "%UserProfile%\AppData\Local\My Games\beyond the sword\cache"
cd %~dp0
start AoELauncher.exe
exit /B