Skip to content

Instantly share code, notes, and snippets.

@murphyslaw
Created June 27, 2025 21:53
Show Gist options
  • Save murphyslaw/425e5499f4d50a7d7496d21929bb0b1b to your computer and use it in GitHub Desktop.
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.
@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