- Posts: 19
- Thank you received: 0
@echo off
color 0B
SET Modname=Stargate
:: Path for original EAW is currently disabled because of ::
:: SET Path="C:\Program Files (x86)\LucasArts\Star Wars Empire at War\GameData"
:: Path for the FOC Addon: ( Disable it by adding :: in front of its line )
SET Path="C:\Program Files (x86)\LucasArts\Star Wars Empire at War Forces of Corruption"
cd %Path%
IF exist sweaw.exe Start sweaw MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
IF exist swfoc.exe Start swfoc MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
:END
:: Path for the FOC Addon + Mod:
:: Bei Leerzeichen immer zwischen zwei "zeichen" stellen
SET Modname="FOC Alliance"
SET Path="WAS_AUCH_IMMER\Star Wars Empire at War Forces of Corruption"
::Edit, lasst die " Zeichen für Modname doch weg, da sie dafür sorgen dass der Mod nicht gestartet wird..
cd %Path%
IF exist sweaw.exe Start sweaw MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
IF exist swfoc.exe Start swfoc MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
:: Path for the original EAW + Mod:
:: Bei Leerzeichen immer zwischen zwei "zeichen" stellen
SET Modname=FOC Alliance
SET Path="WAS_AUCH_IMMER\Star Wars Empire at War\GameData"
cd %Path%
IF exist sweaw.exe Start sweaw MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
IF exist swfoc.exe Start swfoc MODPATH=Mods\%Modname% LANGUAGE=ENGLISH
:: Path for the FOC Addon:
SET Path=WAS_AUCH_IMMER\Star Wars Empire at War Forces of Corruption"
cd %Path%
IF exist swfoc.exe Start swfoc LANGUAGE=ENGLISH
Für deine Konfiguration empfehle ich Version 3, den Mod einfach als originalspiel zu behandeln ( da du hierfür das originalspiel überschrieben zu haben scheinst ) und einfach den richtigen Pfad dorthin einfügen.:: Path for the classic EAW:
SET Path="WAS_AUCH_IMMER\Star Wars Empire at War\GameData"
cd %Path%
IF exist sweaw.exe Start sweaw LANGUAGE=ENGLISH
Diese einfachem 2 Bat zeilen setzten aber vorraus dass die Batdatei selbst sich in .\Star Wars Empire at War Forces of Corruption oder in .\Star Wars Empire at War\GameData befindet, sie rufen das Hauptspiel oder ein mit Mod gepatchtes Hauptspiel auf.IF exist swfoc.exe Start sweaw LANGUAGE=ENGLISH
IF exist swfoc.exe Start swfoc LANGUAGE=ENGLISH