mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-04-01 22:48:12 +00:00
Rebranding
This commit is contained in:
parent
183fb61aa8
commit
2ea65c7451
@ -1,20 +1,20 @@
|
||||
This file contains the q3map2 compile settings used to compile the maps that are part of Nexuiz.
|
||||
This file contains the q3map2 compile settings used to compile the maps that are part of Xonotic.
|
||||
There are also compile-scripts for some maps (mapname.sh).
|
||||
They can be found in your Nexuiz/data/maps folder
|
||||
They can be found in your Xonotic/data/maps folder
|
||||
|
||||
------------
|
||||
Standard
|
||||
------------
|
||||
|
||||
"...q3map2.exe" -meta "...nexuizmap.map"
|
||||
"...q3map2.exe" -vis "...nexuizmap.bsp"
|
||||
"...q3map2.exe" -light -bounce 3 -deluxe -fast -filter -patchshadows -samples 2 "...nexuizmap.bsp"
|
||||
"...q3map2.exe" -meta "...xonoticmap.map"
|
||||
"...q3map2.exe" -vis "...xonoticmap.bsp"
|
||||
"...q3map2.exe" -light -bounce 3 -deluxe -fast -filter -patchshadows -samples 2 "...xonoticmap.bsp"
|
||||
|
||||
------------
|
||||
Only update the entities.
|
||||
------------
|
||||
|
||||
"...q3map2.exe" -onlyents "...nexuizmap.map"
|
||||
"...q3map2.exe" -onlyents "...xonoticmap.map"
|
||||
|
||||
------------
|
||||
bloodprison.map
|
||||
|
@ -7,7 +7,7 @@ ______________
|
||||
sv_logscores_bots choose whether bot are included in stats or not (default: 0)
|
||||
|
||||
sv_eventlog_files_counter number of matches logged until now
|
||||
sv_eventlog_files_nameprefix file name prefix to be used (default: nexuiz)
|
||||
sv_eventlog_files_nameprefix file name prefix to be used (default: xonotic)
|
||||
sv_eventlog_files_namesuffix file name extension to be used (default: .log)
|
||||
sv_eventlog_files_timestamps prefix log lines in the files with :time events (default: 1)
|
||||
|
||||
|
@ -11,8 +11,8 @@ cvars for further tuning:
|
||||
cl_curl_maxdownloads maximum number of downloads at once (default: 1)
|
||||
cl_curl_maxspeed maximum total speed in KiB/s (default: 100)
|
||||
|
||||
Downloaded packages end up in |Nexuiz/data/dlcache/| or
|
||||
|~/.nexuiz/data/dlcache/| and are only used till you exit Nexuiz.
|
||||
Downloaded packages end up in |Xonotic/data/dlcache/| or
|
||||
|~/.xonotic/data/dlcache/| and are only used till you exit Xonotic.
|
||||
If you want to play them localy or use them to setup a server of your
|
||||
own you can "accept" the packages by moving it one level up - right
|
||||
next to your config.cfg.
|
||||
@ -57,9 +57,9 @@ URL, the package will not be offered for download.
|
||||
INFORMATION FOR MIRROR/MAP SERVER ADMINS:
|
||||
|
||||
The Referer is always set to dp://serverhost:serverport/, the User-Agent
|
||||
always starts with "Nexuiz". Look at this sample log line:
|
||||
always starts with "Xonotic". Look at this sample log line:
|
||||
|
||||
141.2.16.3 - - [06/Jun/2006:19:43:14 +0000] "GET /~polzer/temp/nexmaps.php?filename=o-fun.pk3 HTTP/1.1" 302 - "dp://141.2.16.3:26000/" "Nexuiz Linux 21:26:17 Jun 6 2006"
|
||||
141.2.16.3 - - [06/Jun/2006:19:43:14 +0000] "GET /~polzer/temp/nexmaps.php?filename=o-fun.pk3 HTTP/1.1" 302 - "dp://141.2.16.3:26000/" "Xonotic Linux 21:26:17 Jun 6 2006"
|
||||
|
||||
|
||||
If you want to set up a redirection service, here is a sample PHP code for you
|
||||
@ -85,8 +85,8 @@ function bailout($code, $title, $message)
|
||||
$filename = $_GET['filename'];
|
||||
|
||||
$useragent = getenv("HTTP_USER_AGENT");
|
||||
if(strpos($useragent, "Nexuiz ") !== 0)
|
||||
bailout(403, "Forbidden", "You're not a Nexuiz client.");
|
||||
if(strpos($useragent, "Xonotic ") !== 0)
|
||||
bailout(403, "Forbidden", "You're not a Xonotic client.");
|
||||
|
||||
$url = findmap($filename);
|
||||
if(!$url)
|
||||
|
@ -4,7 +4,7 @@ ______________
|
||||
sv_logscores_console print scores to serverconsole after each match (default: 0, set to 1 to enable)
|
||||
sv_logscores_file print scores to a file after each match (default: 0)
|
||||
sv_logscores_filename filename of the output file if sv_logscores_file is enabled (default: "scores.log",
|
||||
the file will be stored in Nexuiz/data/data or ~/.nexuiz/data/data)
|
||||
the file will be stored in Xonotic/data/data or ~/.xonotic/data/data)
|
||||
sv_logscores_bots choose whether bot are included in stats or not (default: 0)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user