diff options
author | Stijn Buys <ingar@osirion.org> | 2008-05-06 21:07:11 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-05-06 21:07:11 +0000 |
commit | 91d3a0352088611d3b78d3344b7a2bf2d4955a0a (patch) | |
tree | 74c0a6adf15ae15aa144f66f20272c1fd58a7db3 /README | |
parent | 8fefc1d995083f0d4a9873f216ccc6e15688d0a9 (diff) |
client-side frame interpolation: frames and timers
Diffstat (limited to 'README')
-rw-r--r-- | README | 47 |
1 files changed, 45 insertions, 2 deletions
@@ -86,6 +86,23 @@ Console functions cl_color 1.0 1.0 0.0 connect +Statistics + + To activate statistics, set the draw_stats variable to 1: + + draw_stats 1 + + This will draw the following statistics on the right side + of the screen: + + fps frames per second + tris number of triangles drawn + quads number of quads drawn + tx network upstream traffic, in kb + rx network downstream traffic, in kb + + The fps counter will not show values above 9999. + Configuration Variables marked with the 'A' flag will be archived, their value @@ -93,16 +110,42 @@ Configuration server reads its configuration from server.ini, the client will use client.ini. + If you delete these files, the default configuration will be restored. + Dedicated server By default, the dedicated server will accept incoming connections - on UDP port 8042. There is no server console. + on UDP port 8042. There is no server console. If you have trouble connecting, try editing the server configuration file ~/.osirion/base/server.ini and change the net_server setting to the server's actual IP address. The default listening port can be altered by changing the net_port setting. +Command line + + Both the client and the dedicated server can parse command line + options. Any console command can be added to the command line with + sign. + + To start a client and connect to a remote server: + + src/osirion +connect remote.server.org + + To start a client and create a new network game: + + src/osirion +set sv_private 1 +connect +join + + To start a dedicated server and set the server framerate to 30 frames per + second: + + src/osiriond +set sv_framerate 30 + + Note: + + Setting variable values from the command line can result in weird values being + written to client.cfg and server.cfg. If you run into problems, check those + files or delete them. + Note for windows32 users On windows32, the game uses the 'home' subdirectory as your personal @@ -201,7 +244,7 @@ Acknowledgements License - The Osirion Project is distributed under + The Osirion Project is distributed under the terms and conditions of the GNU General Public License version 2. |