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