include(head.html.m4) define(SECT,config) include(navbar.html.m4) TITLE(Configuration) All the normal user settings of PROGTITLE are configurable in the menu system. Since it is quite easy to get lost, here is a (not always up-to-date) map of all submenus (the menu items have an auto help display below if you don't touch any keys for some seconds, so to let you keep the overview here, I omit the simple items): define(MI,
  • $1 ($2)
  • ) SUBSUBSECTION(Main Menu) define(SI,
  • $1
  • ) SUBSECTION(New settings) PARAGRAPH([ Some of the new and maybe less obvious game settings in "Game Setup" available since version 0.2 are explained here: Only important for multiplayer games: ]) SUBSECTION(Modify internal settings) PARAGRAPH([ The game is too slow for you? Then take a look at the files FILE(settings.cfg) and FILE(settings_dedicated.cfg) for the dedicated server (best save all your changes to FILE(autoexec.cfg) if you don't want the next release of PROGTITLE to overwrite them). Play a bit with CYCLE_SPEED and all the other nice variables and see what happens. You can place comments preceeded by #. In a network game, the game physics settings are transferred from the server to the clients. Not all possible setting items are included in these files, you can add everything you find in LINK(commands.html,this unsorted document). ]) PARAGRAPH([ The acceleration caused by the wall at distance D is
    acceleration=CYCLE_ACCEL / (CYCLE_ACCEL_OFFSET + D)-
                 CYCLE_ACCEL / (CYCLE_ACCEL_OFFSET + CYCLE_WALL_NEAR)
    
    if the wall is closer than CYCLE_WALL_NEAR. the stuff in the second line just makes sure that the acceleration is 0 if D=CYCLE_WALL_NEAR, so there are no "jumps".) ]) PARAGRAPH([ The CYCLE_RUBBER setting is a niceness thing, especially useful in an internet game where player prediction is poor: if you hit a wall, you are not directly deleted; you are stopped for a short time and your supply of "rubber" is decreased. If you manage to turn fast enough, you won't die. the rubber supply will slowly increase again (on a timescale of 10 seconds, approximately). CYCLE_RUBBER gives the maximum amount of rubber you have got. Setting it too high (~1000000) will make all cycles (your opponents, too!) immortal, setting it to zero is the way it used to be until version 000518. One is a good value for single player games, 3 .. 10 for network games (the more ping, the higher the setting should be). In the current version, the setting on the clients is in effect, so you can cheat a little bit in network mode if you increase your rubber. ]) PARAGRAPH([ A special feature are the CAMERA_FORBID_* settings; if you think for example that using the free floating camera is cheating, simply set CAMERA_FORBID_FREE to 1 on your server; none of the clients will then be able to use the free camera. (Of course, it is possible for a modified client to cheat at this point, using the forbidden camera perspectives anyway.) Try a match with all but the internal camera disabled :-) ]) PARAGRAPH([ The settings that affect only the visual appearance (FLOOR_* ...) are not transferred; It stays a matter of taste if you want the floor red or yellow. ]) SUBSECTION(The Console) PARAGRAPH([ All the settings you alter permanently in the .cfg-files can be tested temporarily if you enter them at the console. To enter a line to the console, you have to bind a key to it (in "Misc Stuff/Global Keyboard Configuration") and press it, of course. The line you enter will be interpreted just as if it was read from a config file. if you type in an incomplete name, you'll get a list of settings that contain that name. Just typing the name of a setting will print the current value.
    If you run a dedicated server, everything you type will be considered console input. ]) SUBSUBSECTION(Special Console Commands) define(CC,$1 $2) x always is a real number, n an integral number, b a boolean value (0=false,1=true) and s a string (all the rest of the line will be read). CC(START_NEW_MATCH,[reset the scores and start a new match in the next round]) CC(DEDICATED_IDLE x,[Only used by the dedicated server: after running for x hours, the server takes the next opportunity (when no one is online) to quit.]) CC(QUIT or EXIT,[shuts the server down]) CC(KICK s,[Kicks player s from the server]) CC(CENTER_MESSAGE/CONSOLE_MESSAGE s,[Prints a message for all connected clients at the center of the screen/on the console]) CC(SAY,[Dedicated server only: let the server administrator say something])
    SUBSUBSECTION(Other Console Commands) CC(CYCLE_SPEED x, basic cycle speed (m/s)) CC(CYCLE_START_SPEED x,cycle speed at startup) CC(CYCLE_ACCEL x,acceleration multiplicator) CC(CYCLE_ACCEL_OFFSET x,acceleration offset (higher means lower acceleration)) CC(CYCLE_DELAY x,minimum time between turns) CC(CYCLE_WALL_NEAR x,when is a wall near?) CC(CYCLE_SOUND_SPEED x,sound speed divisor; the speed at which the cycle sound is played at normal speed) CC(CYCLE_BRAKE x,brake strength) CC(CYCLE_RUBBER x,niceness when hitting a wall) CC(CYCLE_PING_RUBBER x,[niceness when hitting a wall, influence of your ping]) CC(FLOOR_RED/GREEN/BLUE x,floor colour (without moviepack)) CC(FLOOR_MIRROR_INT x,floor mirror intensity(if enabled)) CC(GRID_SIZE x,distance of the grid lines) CC(CAMERA_FORBID_SMART b,forbid smart camera) CC(CAMERA_FORBID_IN b,forbid internal camera) CC(CAMERA_FORBID_FREE b,forbid free camera) CC(CAMERA_FORBID_FOLLOW b,forbid fixed external camera) CC CC(SCORE_WIN n,points you gain for being last one alive) CC(SCORE_SUICIDE n,points you gain for every stupid death (race into the rim/your own wall); should be negative) CC(SCORE_KILL n,points you gain for everyone racing into your wall) CC(SCORE_DIE n,points you gain for every time you race into someone's wall (should be negative)) CC CC(LIMIT_SCORE n,score limit (all limits for one match)) CC(LIMIT_ROUNDS n,maximum number of rounds to play) CC(LIMIT_TIME n,maximum time (in minutes)) CC(MESSAGE_OF_DAY_1/2/3/4 s,message lines sent to the clients upon connection) CC CC(COLOR_STRINGS b,draw strings in colour?)
    PARAGRAPH( Settings for single player highscore hunt on this server: CC(SP_SCORE_WIN n,points you gain for being last one alive) CC(SP_LIMIT_ROUNDS n,max number of rounds to play) CC(SP_LIMIT_TIME n,max time (in minutes)) CC(SP_AIS n,number of opponents you will face)
    ) PARAGRAPH( Ladder league constants: CC(LADDER_PERCENT_BET x,percentage of your score to be put in the pot) CC(LADDER_MIN_BET x,minimum credits to be put in the pot) CC(LADDER_TAX x,percentage the IRS takes from the pot) CC(LADDER_LOSE_PERCENT_ON_LOAD x,you loose this percentage of your score every time the server is restarted) CC(LADDER_LOSE_MIN_ON_LOAD x,but minimum this value) CC(LADDER_GAIN_EXTRA x,the winner gets his ping+ping charity (in seconds) times this value extra)
    ) SECTION(Complete List) PARAGRAPH([ A complete list of all available commands is available LINK(commands.html,here). ]) include(sig.m4) include(navbar.html.m4)