Skip to content

Commit

Permalink
Clarify that ticks start from zero in checkerlib documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKothmeier committed Aug 26, 2023
1 parent 03e0d03 commit 23bd867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/checkers/go-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ Gameserver repository](https://github.com/fausecteam/ctf-gameserver).
Local Execution
---------------
When running your Checker Script locally, just pass your service IP, the tick to check and a dummy team ID
as command line arguments:
as command line arguments (Tick starts from zero):

```sh
go build && ./checkerscript ::1 10 1
go build && ./checkerscript ::1 10 0
```

The library will print messages to stderr and generate dummy flags when launched without a Checker Master.
Expand Down
4 changes: 2 additions & 2 deletions docs/checkers/python-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ For a complete, but still simple, Checker Script see "examples/checker/example_c
Local Execution
---------------
When running your Checker Script locally, just pass your service IP, the tick to check and a dummy team ID
as command line arguments:
as command line arguments (Tick starts from zero):

```sh
./checkerscript.py ::1 10 1
./checkerscript.py ::1 10 0
```

The library will print messages to stdout and generate dummy flags when launched without a Checker Master.
Expand Down

0 comments on commit 23bd867

Please sign in to comment.