I have .bat file for widows. For game start(TWM2 mod Divide_and_Conquer).
How change the path in .bat and what is path need to .app pr to .exec?
Hi, I have .bat file for widows. For game start(TWM2 mod Divide_and_Conquer).
@echo off
cd ....
IF EXIST kingdoms.exe (start kingdoms.exe @%0..TATW.cfg) ELSE (
IF EXIST medieval2.exe (
start medieval2.exe @%0..TATW.cfg) ELSE (
echo ERROR: Cannot find the M2TW or Kingdoms executable.
echo You probably installed [your mod name here] into the wrong folder.
pause
)
)
So, I need to change this file for start my app for path:
"/Users/nikolai/Library/Application Support/Steam/steamapps/common/Medieval II Total War"
or
"/Users/nikolai/Library/Application Support/Steam/steamapps/common/Medieval II Total War/Medieval II Total War.app/Contents/MacOS/Medieval II Total War"
How change the path in .bat and what is path need to .app pr to .exec?