Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Escrow_ignore to Docs #517

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,17 @@ dependencies {
}
```

### Escrow

Chooses what files to ignore when you are Escrow locking

```lua
escrow_ignore {
'file1', -- Use the filepath for the resources you want to ignore When Escrow locking.
'config/file2'
}
```

#### Runtime constraints
The `dependency` field can also be used to specify requirements for the resource to run, such as a minimum server version,
a server policy value, or a game build. These are specified using the following syntax:
Expand Down
2 changes: 1 addition & 1 deletion static/examples/config/server.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sv_scriptHookAllowed 0
sets tags "default"

# A valid locale identifier for your server's primary language.
# For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR"
# For example "en-US", "fr-CA", "nl-NL", "de-DE", "en-GB", "pt-BR" you can find the full list here: https://forum.cfx.re/t/server-location-locale-list/5221683
sets locale "root-AQ"
# please DO replace root-AQ on the line ABOVE with a real language! :)

Expand Down