Commit 788b97ad authored by Matthew Hausknecht's avatar Matthew Hausknecht

Updated Readme.

parent ed73d77e
...@@ -23,11 +23,15 @@ Example C++ and Python agents are provided in the `example` directory. ...@@ -23,11 +23,15 @@ Example C++ and Python agents are provided in the `example` directory.
## Demo ## Demo
Start a simple 1v1 game played by Agent2D: Start a simple 1v1 game played by Agent2D:
`./bin/start.py --offense-npcs=1 --defense-npcs=1` ```
./bin/start.py --offense-npcs=1 --defense-npcs=1
```
Start an example agent on the empty goal task. First start the server: Start an example agent on the empty goal task. This agent will move
`./bin/start.py --offense-agents=1 &` and then connect the agent: forwards slowly. First start the server: `./bin/start.py
--offense-agents=1 &` and then connect the agent:
`./example/hfo_example_agent`. `./example/hfo_example_agent`.
Or do both in a single command: Or do both in a single command:
``` ```
(./bin/start.py --offense-agents=1 &) && ./example/hfo_example_agent (./bin/start.py --offense-agents=1 &) && ./example/hfo_example_agent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment