home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / antipolix-2.0 / SERVER_USE < prev    next >
Encoding:
Text File  |  1995-06-22  |  1.6 KB  |  67 lines

  1. AntipoliX  by bernard BROSS
  2. ---------
  3.  
  4. HOW TO START THE SERVER
  5. ------------------------
  6.  
  7.   First, ensure that files ".server_defaults" , ".motd" and ".players"
  8. exist, even if empty.
  9.   Then enter for instance :
  10.  
  11. ./server -p5555 &
  12.  
  13. where 5555 is the port. 
  14.  
  15.   Server is already ok to receive connections.
  16.  
  17.   Server parameters are those defined in file ".server_defaults".
  18.   File ".motd" contains message of the day. About 30 lines maximum.
  19.   File ".players" contains players names, passwords, and scores.
  20.  
  21. ---------
  22.  
  23.   This is an instance of .server_defaults file :
  24.  
  25. SIZE_X          5
  26. SIZE_Z          5
  27.  
  28. COST_FORTRESS           12
  29. COST_ARMIE              3
  30. COST_HOVERCRAFT         2
  31.  
  32. COST_INVISIBILITY       5
  33. COST_TELEPORT           10
  34.  
  35. DEF_FORTRESS            5
  36. DEF_ARMIE               2
  37. DEF_HOVERCRAFT          1
  38.  
  39. ATT_ARMIE               2
  40. ATT_HOVERCRAFT          1
  41.  
  42. MOV_ARMIE               1
  43. MOV_HOVERCRAFT          2
  44. TELEPORT_FIELD          4
  45.  
  46. TIME                    100
  47. CREDITS_100             150
  48.  
  49. --------
  50.  
  51. CREDITS_100 define the average total number of points placed on
  52. hundred squares, after all players have droped their pieces at the
  53. beginning (using all their credits). Increasing this number will
  54. give more powerful players at the beginning (and will also increase the
  55. length of the game).
  56.  
  57. TIME value is the number of seconds each player earns at the beginning. If
  58. the total amont of time distributed among the players is greater than
  59. 250, then each player earns 250/(nb of players) seconds of time.
  60.  
  61. Note that there's no SIZE_Y parameter, because it's ALWAYS equal to
  62. SIZE_X.
  63.  
  64.  
  65. ****  If any problem : mail bross@essi.fr
  66.  
  67.