Created
June 27, 2025 21:53
-
-
Save murphyslaw/425e5499f4d50a7d7496d21929bb0b1b to your computer and use it in GitHub Desktop.
Windows executable to run the Phobos project against the EVE Frontier game client.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set evepath="C:\Program Files\EVE Frontier" | |
set dest=C:\Users\johndoe\Downloads | |
set outfile=%dest%\frontier.zip | |
set dirs=fsd_lite fsd_binary resource_pickle | |
:: extract data | |
python run.py --eve=%evepath% --json=%dest% --list="types, typelist, blueprints, iconids" --translate=en-us | |
:: archive content | |
tar.exe -c -f %outfile% -C %dest% %dirs% | |
:: cleanup files | |
for %%x in (%dirs%) do rmdir /s /q %dest%\%%x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment