1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
This is the client distribution. The client is quite usuable and
stable at this point (0.94.2).
To use the client, do the following:
Change the configurable options in the Imakefile. The configurable ones
are those at the start of the file.
make the makefiles ("xmkmf -a")
type 'make'.
You must also have/know of a server that supports the new client code.
If you have character files with keybindings you want to keep, run
the following:
"mkdir ~/.crossfire" - note that this should be automatically created
one you run the clien.
awk 'BEGIN {ORS=" "} /^key / {for (i=2; i<=NF; i++) print $i;printf "\n"}'
infile > ~/.crossfire/keys
Then:
cat def_keys >> ~/.crossfire/keys
Where infile is the character file. The keybindings used for that character
will now be your keybinding for the client. Note that the client use
global keybindings, and not per character. This means that the same
keybindings will be for all characters you play with the client.
You can now run the client. In general, all you need to do
"cfclient -server <servername>", where <servername> is the host name
that is running a new server. -port will specify a different port.
You can do "cfclient -h" to see a full list of options.
|