Skip to content

Commit

Permalink
v0.6.1-alpha | docs: fixed demo name format quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
shobhit-pathak committed Dec 29, 2023
1 parent 43de485 commit d2556d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cfg/MatchZy/config.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ matchzy_demo_path MatchZy/
// Format of demo filname. You may use {TIME}, {MATCH_ID}, {MAP}, {MAPNUMBER}, {TEAM1} and {TEAM2}
// Demo files will be named according to the format specified. Do not include .dem format, it will be added automatically
// Make sure to keep {TIME} in the format to create a unique demo file everytime.
matchzy_demo_name_format {TIME}_{MATCH_ID}_{MAP}_{TEAM1}_vs_{TEAM2}
matchzy_demo_name_format "{TIME}_{MATCH_ID}_{MAP}_{TEAM1}_vs_{TEAM2}"

// Whether !stop/.stop command is enabled by default or not. Default value: false
// Note: We are using Valve backup system to record and restore the backups. In most of the cases, this should be just fine.
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Again, inside `csgo/cfg/MatchZy`, a file named `config.cfg` should be present. T
: Path of folder in which demos will be saved. If defined, it must not start with a slash and must end with a slash. Set to empty string to use the csgo root. Example: `matchzy_demo_path MatchZy/`<br>**`Default: MatchZy/`**

####`matchzy_demo_name_format`
: Format of demo filname. You may use {TIME}, {MATCH_ID}, {MAP}, {MAPNUMBER}, {TEAM1} and {TEAM2}. Demo files will be named according to the format specified. Do not include .dem format, it will be added automatically. Make sure to keep {TIME} in the format to create a unique demo file everytime.<br>**`Default: {TIME}_{MATCH_ID}_{MAP}_{TEAM1}_vs_{TEAM2}`**
: Format of demo filname. You may use {TIME}, {MATCH_ID}, {MAP}, {MAPNUMBER}, {TEAM1} and {TEAM2}. Demo files will be named according to the format specified. Do not include .dem format, it will be added automatically. Make sure to keep {TIME} in the format to create a unique demo file everytime.<br>**`Default: "{TIME}_{MATCH_ID}_{MAP}_{TEAM1}_vs_{TEAM2}"`**

####`matchzy_demo_upload_url`
: If defined, recorded demo will be [uploaded](../gotv#automatic-upload) to this URL once the map ends. Make sure that the URL is wrapped in double quotes ("").
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/gotv.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ MatchZy records the demos automatically. It recording starts once all teams have

Path of demos can be configured using `matchzy_demo_path <directory>/`. If defined, it must not start with a slash and must end with a slash. Set to empty string to use the csgo root.

Demo files will be named according to `matchzy_demo_name_format`. The default format is: `{TIME}_{MATCH_ID}_{MAP}_{TEAM1}_{TEAM2}`
Demo files will be named according to `matchzy_demo_name_format`. The default format is: `"{TIME}_{MATCH_ID}_{MAP}_{TEAM1}_vs_{TEAM2}"`

!!! info "Broadcast delay on GOTV recording"

Expand Down

0 comments on commit d2556d6

Please sign in to comment.