Alright, I have begun setting up a Nexuiz server. I'm going to try to model it after Herforst, but I will try some different maps and keep the max players to 12 (for now).
I am running Fedora Core 4.
I have some questions on a couple of things.
1. How do I run Nexuiz as a service? Right now, I am SSHing into the server and running the server, but when I close the terminal, the Nexuiz server stops. I thought that adding & to the end of the command caused it to be a background running process, but it's still attached to the terminal session because when I close it, the process dies. Do I need to setup a script under /rc/init.d?
2. How do I get the names of the maps to setup the maplist properly. I keep getting an error on loading the maplist that I have defined in the server.cfg. So far, I've been opening up the .pk3 files and looking for the name of the .bsp file to know what to place in the maplist. I guess that is not working because I tried adding both versions of the Facing worlds (the original and the redesign) and it's not accepting the maplist. It keeps saying "Maplist is bad/messed up." Here is what I have :
- Code: Select all
set "g_maplist" "'facing_worlds_nex_b1k''ctf_facing_worlds_nex'"
If I just do the first map, it works. When I add the second map to the list, or if I just put the second map by itself, it won't load. So I have the name of the second map wrong, but I don't understand why. The .pk3 file for that map is in the /data directory, and the name of the .bsp inside that .pk3 file is named ctf_facing_worlds_nex.bsp. It seems like it should work. What am I doing wrong? Is there a simpler way of finding out the names of the maps that I have available?
3. esteel suggested putting (pure) in the names of maps where certain gameplay settings are not changed. What settings are those? I noticed that Herforst has a slightly different gravity setting than what is default (or that is how it seems). I'm not sure if I want to change that or not. Would that be something that would make the server unpure?
Thanks