]> icculus.org git repositories - divverent/nexuiz.git/blob - Docs/FAQ.aft
stupid typo corrected, thanks KadaverJack
[divverent/nexuiz.git] / Docs / FAQ.aft
1 #--- AFT (Almost Free Text) source file for Nexuiz FAQ
2 #--- use AFT v5.096 or later (http://www.maplefish.com/todd/aft.html)
3
4 *Title: Nexuiz 1.5.1 FAQ
5                         http://nexuiz.com       http://alientrap.org
6
7 ------
8
9 *TOC
10
11 ------
12
13 * Troubleshooting
14
15 ** How do I install Nexuiz?
16 Just unzip the |nexuiz15.zip| file. You can do this with any archive program (like [7zip (http://7zip.org)]). It's very important to remain the directory structure while unpacking (in WinZip this option is called "Use folder names"). The directory structure should look like this afterwards:
17 ^<<
18 Nexuiz
19 |-- Docs
20 |-- Nexuiz-SDL.app
21 |-- data
22 |   |-- data*.pk3
23 |-- navnodeedit
24 |-- *.exe
25 |-- *.dll
26 `-- nexuiz-linux-*
27 ^>>
28
29 ** When I start Nexuiz all I see is a black screen with some checkered squares
30 This happens when the engine can't load the data*.pk3 file. The reasons could be:
31         1. you unpacked the zip file without folder names (see [How do I install Nexuiz?])
32         2. on Linux: the current directory is not your Nexuiz/ folder (see [How can I place a shortcut to Nexuiz on my Linux desktop?])
33         3. your download might be corrupted
34
35 ** The sound is broken, it crackles and stutters
36 Try run |nexuiz-sdl.exe| instead of |nexuiz.exe| (on Windows). Adding the command line options |-sndstereo| and/or |-sndspeed 48000| can also help on some systems (on Windows, Linux, Mac).
37
38 ** When I join a server or after a map change I see nothing but a black screen, but I can still move and shoot
39 This is probably because you don't have the map, that's running on the server. There is no map/content download in Nexuiz at the moment so you have to get the map the old fashioned way. Most servers will have a download URL in their name or welcome message. There is also a [wiki page (http://savage747.sa.funpic.de/wiki/pmwiki.php?n=Main.CustomMaps)] dedicated to new maps.
40
41
42
43 * Server setup
44
45 ** How do I start a server?
46 There's a tutorial on how to setup up an dedicated server in this [forum post (http://www.alientrap.org/forum/viewtopic.php?t=18)].
47
48 ** Which ports do I have to open in firewall/forward from my router to run a server?
49 The default port is 26000 UDP. You can change that by starting Nexuiz with |nexuiz-sdl.exe -port <port>| (on Windows) or |nexuiz-linux-686-sdl -port <port>| (on Linux).
50 To add the command line argument on Windows, create a new shortcut to |nexuiz-sdl.exe| and right click on it. Select properties and |-port <port>| in the "Target:" line. Be sure that the "Start in:" line contains the full path to your Nexuiz folder and click "OK".
51 If you follow the tutorial mentioned above you do not need this command line argument as it will be done in the config file created for the server.
52
53 ** Is there some kind of rcon?
54 Yes starting with Nexuiz 1.5 there is rcon (QuakeWorld compatible). To use it you must enter |set rcon_password hackme| in the server console or server config file. The Nexuiz client has to set the same password in the same fasion. You can then issue commands with |rcon <command>|. There are also external rcon tool but make sure you use a QW compatible rcon tool.
55 There is also a feature called |client side commands|. To enable it enter |set sv__clientcommands 1| on your server console. Don't forget to set a password with |set sv__clientcommands__password hackme|. Now you can become admin ingame by entering |ccl hackme| on the client console. To issue commands enter |cc <command>| (e.g. |cc restart| or |cc chmap dm_nexdm12|).
56
57 ** How can i kick people who are using special characters in their names?
58 Enter |status| at the console. You will see a list of all players. In front of their names you will see a number (the player id). You can kick the player you don't like with |kick # <player id> <reason>| (notice the space after #).
59
60
61 * General questions
62
63 ** How do I install new maps?
64 Maps usually ship as *.pk3 file. All you have to do is to copy this file to your |Nexuiz/data/| directory.
65
66 ** How can I place a shortcut to Nexuiz on my Linux desktop?
67 Use the script nexuiz-linux.sh instead of the binary. It will use the right version (32 or 64 bit).
68
69 ** How do I open the console?
70 Press |\[shift]+\[escape]|. To close it press |\[escape]|
71
72 ** What console commands/variables are there?
73 You can get a list of variables by entering |cvarlist| on the console. |cmdlist| will give you a list of available commands. An annotated version of that output can be found at the [Nexuiz wiki (http://savage747.sa.funpic.de/wiki/pmwiki.php?n=Main.ConsoleCommands)].
74
75 ** How can I speed up my frame rate?
76 The greatest performance boost can be achieved by turning off dynamic lights and shadows. Bloom is also quite resource intensive. On older graphics cards or on-board/notebook chips with little video ram you can try to lower the texture resolution. To do this open the console and type |gl__picmip #; r__restart| (where # is a number between 0 and 10, 0 is the highest quality).
77
78 ** How can I activate colors in my name?
79 Colors can be used in nicknames and chat messages by typing ^ followed by a number between 0 and 9.
80
81         !                            !
82         ! code   ! color             !
83         !----------------------------!
84         ! ^0     ! black             !
85         !----------------------------!
86         ! ^1     ! red               !
87         !----------------------------!
88         ! ^2     ! green             !
89         !----------------------------!
90         ! ^3     ! yellow            !
91         !----------------------------!
92         ! ^4     ! blue              !
93         !----------------------------!
94         ! ^5     ! aqua              !
95         !----------------------------!
96         ! ^6     ! pink              !
97         !----------------------------!
98         ! ^7     ! white             !
99         !----------------------------!
100         ! ^8     ! light grey        !
101         !----------------------------!
102         ! ^9     ! dark grey         !
103         !----------------------------!
104
105 ** How do i watch/record demos?
106 To record a demo: open the console and type |rec <name>|. The demo file will be stored in |~/.nexuiz/data/demos/<name>.dem| (Linux) or |Nexuiz/data/demos/<name>.dem| (Windows).
107 To watch a demo: open the console and type |ply <name>| (|name| is the filename without extension). If you downloaded a demo, copy it to |Nexuiz/data/demos| first.
108 You can list all your demo files by typing |dem| on the console. Some usefull keybindings for viewing demos are listed [here (http://google.com/search?q=cache:http://www.nexuiz.com/forums/index.php?showtopic=1766&st=0&p=13400&#entry13400)].
109
110
111 * Development
112
113 ** How do i set up gtkradiant to create/edit Nexuiz maps?
114 There's a [detailed guide (http://google.com/search?q=cache:http://www.nexuiz.com/forums/index.php?showtopic=195)] on gtkradiant setup in the forums. There are also a [Linux shell script (http://google.com/search?q=cache:http://www.nexuiz.com/forums/index.php?showtopic=195&view=findpost&p=11176)] and a [Windows application (http://google.com/search?q=cache:http://www.nexuiz.com/forums/index.php?showtopic=195&view=findpost&p=11838)] that will configure your gtkradiant (1.4) automagically.
115
116 ** Where can i get latest development versions of the source code?
117 _Engine:_ instructions are available at http://icculus.org/twilight/darkplaces/download.html (you will need a [cvs client (http://www.nongnu.org/cvs/)], beta builds are available [here (http://icculus.org/twilight/darkplaces/files/)])
118
119 _Game data:_ to check out the Nexuiz svn, you'll need a [svn client (http://subversion.tigris.org/project_packages.html)]. To check out the repository with a commandline svn client, do
120 ^<<
121 svn co svn://svn.icculus.org/nexuiz/trunk/
122 ^>>
123 To compile the gamecode you need [fteqcc (http://sourceforge.net/project/showfiles.php?group\_id=116842&package\_id=129507)]. Just download it and run it twice, once in |data/menuqc| and once in |data/qcsrc/server|.