miere43 / tes-char-tracker

Draws your Skyrim/Fallout 4 character movement map

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TES Character Tracker

Draws your Skyrim/Fallout 4 character movement map using save files. Works only for default worldspace (eg. no Solstheim map), saves inside interiors are ignored.

Sample output

Troubleshooting

  • If you have errors with reading saves, you should run application from administrator or copy saves to folder, where no admin rights required and change Fallout4SaveDir or SkyrimSaveDir in settings.json to this folder.

Settings

There is no GUI settings, so you have to edit settings.json in app. directory. TES Character Tracker uses JSON to handle it's settings.

"Game": "Fallout 4"

Game to use, Fallout 4 or Skyrim.

"IgnoreCharacters": [ "My dumb char", "Another one" ]

Do not draw characters with these names (string array).

"FirstDrawCircleRadius": 8.0

Circle radius of first drawing of character (float)

"DrawCircleRadius": 4.0

Default circle radius (float)

"LineSize": 2.0

Line size to draw lines between points.

"SkyrimSaveDir": null

Skyrim saves directory. Use null to use default saves location.

"SkyrimMapFilePath": "Resources/skyrim-map.jpg"

Skyrim map to render things at.

"Fallout4SaveDir": null

Fallout 4 saves directory. Use null to use default saves location.

"Fallout4MapFilePath": "Resources/fallout4-8-map.jpg"

Fallout 4 map to render things at. There are several maps in Resources folder, you can use them too.

"LegendX": 1,
"LegendY": 1,
"LegendFontSize": 16,
"LegendFontName": "Segoe UI",
"LegendFontStyle": 0

Legend settings. LegendX and LegendY specifies where it will be drawn on map. LegendFontStyle is font drawing style, valid values: 0 - regular, 1 - bold, 2 - italic, 4 - underline, 8 - strikeout. Sum values to combine styles.

"DrawColorsStrings": [
  "LightBlue",
  "Red"
]

Which colors to use to draw things. Each character has unique color, if these is not enought colors to cover all characters, then gray will be used instead. You can specify values in HEX, as well as using human-readable names (not all will work).

Thanks

About

Draws your Skyrim/Fallout 4 character movement map

License:MIT License


Languages

Language:C# 88.1%Language:Pascal 10.4%Language:PowerShell 1.5%