Skip to content
Open
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
43 changes: 29 additions & 14 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
## Running The Game

Compile the game using the make command (or on your favorite IDE).

To run the game execute graphwar.jar.

## Running Local Servers

To run a local server and connect to it you must pass the ip of the local server to graphwar
and to the globalServer as a command line argument. So to start a server locally the commands are:

* java -jar globalServer.jar [your-server-ip]
* java -jar roomServer.jar [your-server-ip]
* java -jar graphwar.jar [your-server-ip]



## Clone and run game from terminal

Open terminal

You man need to install ```openjdk-11-jdk``` if you havent already

```
git clone git@github.com:catabriga/graphwar.git
cd graphwar
make
java -jar graphwar.jar
```

# Graphwar Tutorial

Expand Down Expand Up @@ -97,17 +126,3 @@ The available commands are:

Just type them on the game chat to use them.

## Running The Game

Compile the game using the make command (or on your favorite IDE).

To run the game execute graphwar.jar.

## Running Local Servers

To run a local server and connect to it you must pass the ip of the local server to graphwar
and to the globalServer as a command line argument. So to start a server locally the commands are:

* java -jar globalServer.jar [your-server-ip]
* java -jar roomServer.jar [your-server-ip]
* java -jar graphwar.jar [your-server-ip]