(12-12-2012, 12:24 PM)Gmandam Wrote: Regarding question 2 it's a windows based OS as to the installation, I could provide screen shots if that helps but as far as I know it looks similar to how I run it on my normal computer.
Screenshots won't really help.
What exactly is the OS? The best place to put configurations and pk3 files is the personal directory. This is the default place where files are written. You can find out where it is by locating a standard file using console commands, for example in a dedicated server:
Code:
which data/server.db
in the server console will tell you where server.db is located. It will be something like C:/prefix/Xonotic/data/data/server.db (with data appearing twice in a row), so you want to place the pk3 files in C:/prefix/Xonotic/data/ (with one data, so not data/data).
(12-12-2012, 12:24 PM)Gmandam Wrote: For question 3 I plan to use, http://mapdl.xonotic.eu/tzork/ to provide the download links for the maps so I just post it with that bit I previously quoted to allow users to get the maps?
No, because the map URLs are for example
Code:
http://mapdl.xonotic.eu/tzork/Spiderctf-v1r1.pk3
which consists of
Code:
http://mapdl.xonotic.eu/tzork/
with the map name appended, so you have to use that as a base URL.
getmap.php is nothing special at all: it's just an example of non-trivial use of sv_curl_defaulturl, and being an example it's probably never used at all. It's just there to let you know that you can also use CGI scripts to serve your files, and not just direct file GET requests.
To make sure you get it right: sv_curl_defaulturl contains a string to which the map's file name is appended to form a valid HTTP or FTP address pointing to the file in question. No black magic involved.