.data_directory.txt 1.1 KB

1234567891011121314151617
  1. # This file is to show what files will/may be found within the data/ directory
  2. F config.toml (Where server settings will live)
  3. F motd.txt (A text file to be sent out on login)
  4. D data/
  5. D data/logs
  6. F data/logs/XX-XX-XXXX.log (Where X will be the date in MM-DD-YYYY format)
  7. D data/games
  8. D data/games/gameX (Where X is game number)
  9. F data/games/gameX/config.toml (Where game specific settings will live)
  10. F data/games/gameX/map.json (Mapping file, Lists ONLY sector and it's warps, no other data)
  11. F data/games/gameX/ships.json (Ship Models, so you could have a Death Star in one game, and a Battlestar in another, etc)
  12. D data/games/gameX/data (Where player data, sector data, ports and planets live)
  13. F data/games/gameX/data/players.db3 (sqlite database: id, name, password, sector, ship_id, corp_id)
  14. F data/games/gameX/data/corps.json (json file: corp_id, corp_name, corp_leader_id, corp_password, corp_motd)
  15. F data/games/gameX/data/ships.db3 (sqlite database: id, name, model_id, owner_id, corp_owned, figs, shields, holds, cargo_contents)
  16. F data/games/gameX/data/sectors.db3 (sqlite database)