├── .gitattributes ├── .gitignore ├── EI_config └── EI_detailed_json_combat_replay.conf ├── Example_Guild_Data.py ├── GW2_Color_Scheme.py ├── GW2_Data.py ├── LICENSE ├── README.md ├── RoleDecisionFlow.md ├── TW5_Fight_Review_Charts.py ├── TW5_parse_top_stats_detailed.py ├── TW5_parse_top_stats_per_fight.py ├── TW5_parse_top_stats_tools.py ├── TW5_parsing_arc_top_stats.bat ├── __init__.py ├── _version.py ├── example_output ├── TW5_Top_Stat_Parse.html ├── top_stats_detailed.json ├── top_stats_detailed.txt ├── top_stats_detailed.xls ├── top_stats_overview.json ├── top_stats_overview.txt └── top_stats_overview.xls ├── future_stats_to_collects.py ├── images ├── ExampleOutput.PNG ├── Screenshot_1.png ├── Screenshot_2.png ├── Screenshot_3.png ├── Screenshot_4.png └── Screenshot_5.png ├── parser_configs ├── TW5_parser_config_detailed.py └── __init__.py └── update_files ├── $ _JEL_Startup-States.tid └── new_profession_icons.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /EI_config/EI_detailed_json_combat_replay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/EI_config/EI_detailed_json_combat_replay.conf -------------------------------------------------------------------------------- /Example_Guild_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/Example_Guild_Data.py -------------------------------------------------------------------------------- /GW2_Color_Scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/GW2_Color_Scheme.py -------------------------------------------------------------------------------- /GW2_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/GW2_Data.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/README.md -------------------------------------------------------------------------------- /RoleDecisionFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/RoleDecisionFlow.md -------------------------------------------------------------------------------- /TW5_Fight_Review_Charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/TW5_Fight_Review_Charts.py -------------------------------------------------------------------------------- /TW5_parse_top_stats_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/TW5_parse_top_stats_detailed.py -------------------------------------------------------------------------------- /TW5_parse_top_stats_per_fight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/TW5_parse_top_stats_per_fight.py -------------------------------------------------------------------------------- /TW5_parse_top_stats_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/TW5_parse_top_stats_tools.py -------------------------------------------------------------------------------- /TW5_parsing_arc_top_stats.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/TW5_parsing_arc_top_stats.bat -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_version.py: -------------------------------------------------------------------------------- 1 | VERSION = "3.5.20-TW5" 2 | -------------------------------------------------------------------------------- /example_output/TW5_Top_Stat_Parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/TW5_Top_Stat_Parse.html -------------------------------------------------------------------------------- /example_output/top_stats_detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_detailed.json -------------------------------------------------------------------------------- /example_output/top_stats_detailed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_detailed.txt -------------------------------------------------------------------------------- /example_output/top_stats_detailed.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_detailed.xls -------------------------------------------------------------------------------- /example_output/top_stats_overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_overview.json -------------------------------------------------------------------------------- /example_output/top_stats_overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_overview.txt -------------------------------------------------------------------------------- /example_output/top_stats_overview.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/example_output/top_stats_overview.xls -------------------------------------------------------------------------------- /future_stats_to_collects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/future_stats_to_collects.py -------------------------------------------------------------------------------- /images/ExampleOutput.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/ExampleOutput.PNG -------------------------------------------------------------------------------- /images/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/Screenshot_1.png -------------------------------------------------------------------------------- /images/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/Screenshot_2.png -------------------------------------------------------------------------------- /images/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/Screenshot_3.png -------------------------------------------------------------------------------- /images/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/Screenshot_4.png -------------------------------------------------------------------------------- /images/Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/images/Screenshot_5.png -------------------------------------------------------------------------------- /parser_configs/TW5_parser_config_detailed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/parser_configs/TW5_parser_config_detailed.py -------------------------------------------------------------------------------- /parser_configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /update_files/$ _JEL_Startup-States.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/update_files/$ _JEL_Startup-States.tid -------------------------------------------------------------------------------- /update_files/new_profession_icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drevarr/arcdps_top_stats_parser/HEAD/update_files/new_profession_icons.json --------------------------------------------------------------------------------