changed name to AsciiFarm and updated description

This commit is contained in:
troido 2017-10-23 16:55:16 +02:00
parent bb62bda698
commit 539bf6f6ab
7 changed files with 11 additions and 11 deletions

View File

@ -1,10 +1,10 @@
# rooms
# AsciiFarm
This is a multiplayer ascii game (or so far, only the framework for a game actually)
_Formerly: **Rooms** _
The goal now is to have players walk around in different rooms where they can interact with things.
This is a multiplayer ascii farming/fighting game.
A lot of functionality is actually working.
![screenshot](screenshot.png)
## Working Features
@ -27,7 +27,7 @@ Not tested on mac. If anyone could test this for me this would be much appreciat
Run `hostrooms.py` from the same directory to start the server.
Run `rooms` or `playgame.py` to start the client
Run `asciifarm` or `playgame.py` to start the client
## Playing instructions

View File

View File

@ -8,8 +8,8 @@ import sys
defaultAdresses = {
"abstract": "roomtest",
"unix": "./roomstest.socket",
"abstract": "asciifarm",
"unix": "./asciifarm.socket",
"inet": "localhost:9021",
}

View File

@ -14,8 +14,8 @@ import argparse
defaultAdresses = {
"abstract": "roomtest",
"unix": "./roomstest.socket",
"abstract": "asciifarm",
"unix": "./asciifarm.socket",
"inet": "localhost:9021",
}

View File

@ -14,7 +14,7 @@ import getpass
import main
parser = argparse.ArgumentParser(description="The client to Rooms. Run this to connect to to the server.", epilog="""
parser = argparse.ArgumentParser(description="The client to AsciiFarm. Run this to connect to to the server.", epilog="""
Gameplay information:
Control your player with the arrow keys or wasd. Press escape to exit.
You can pick up something with the 'e' key, and drop whatever you're holding with 'q'.

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -1,3 +1,3 @@
#!/bin/sh
cd "`dirname "$0"`"
./hostrooms.py $@ >stdout.log 2>stderr.log &
./hostfarms.py $@ >stdout.log 2>stderr.log &