ok dit allemaal komt van planetquake.com/quake3
als je in q3a een server opsart maakt q3a dit bestandje aan met de instellingen, lees ff goed de comments door. Je kan dit proberen:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
| //Default Free For All Server Configuration File
//Double slashes are used for comments and to keep commands from running. Remove
the slashes before a specific to run that command.
//set Gametype to 0 for Free for All Mode
g_gametype 0
//Free For All Settings Below
//set ffa fraglimit. Set to 0 for no limit.
fraglimit 30
//set ffa timelimit. Set to 0 for no limit.
timelimit 25
//set Maximum number of clients
sv_maxclients 8
//set host name that shows up in server list. Change below to your server name
preference and remove the //
//sv_hostname "Q3A FFA Server"
//set message of the day that players see while connecting to the server. Must be set
before level loads. Change below to your message of the day preference and remove
the //
//g_motd "Happy Fragging!"
//set requirement for client password. 1=require password, 0=no password required
(Default: 0)
sv_privateClients 0
//set password for private server "" for no password
sv_privatePassword ""
//set remote console password
rconpassword ""
//turn on/off pak cheat check. 1=on, 0=off (Default: 1)
sv_pure 1
//set max allowable rate for a client. 8000 to 10000 recommended. Max: 25000
(Default: 0)
sv_maxRate 10000
//add up to 4 additional master servers to report to (As you can see the ingame configs
don't report to id automatically)
sv_master2 ""
sv_master3 ""
sv_master4 ""
sv_master5 ""
//Set map selection, cycle order, and load first map for free for all
set d1 "map q3dm2 ; set nextmap vstr d2"
set d2 "map q3dm3 ; set nextmap vstr d3"
set d3 "map q3dm4 ; set nextmap vstr d4"
set d4 "map q3dm5 ; set nextmap vstr d5"
set d5 "map q3dm6 ; set nextmap vstr d6"
set d6 "map q3dm7 ; set nextmap vstr d7"
set d7 "map q3dm8 ; set nextmap vstr d8"
set d8 "map q3dm9 ; set nextmap vstr d9"
set d9 "map q3dm10 ; set nextmap vstr d10"
set d10 "map q3dm11 ; set nextmap vstr d1"
vstr d1
//set weapon respawn times for free for all in seconds. May need to decrease for large
number of clients. (Default: 5)
g_weaponrespawn 5
//set voting. 1=on, 0=off (Default: 1)
g_allowvote 1
//set power multiples for quad damage (Default: 3)
g_quadfactor 3
//syncronous clients is necessary to allow client demo recording. Setting to 1 allows
recording but play is not smooth and is not recommended for normal use. (Default: 0)
g_syncronousClients 0
//additions by Dekard- Anything with sets will be seen in the server settings in gamespy
and in game for server settings.
//If you are using special maps here would be a good place to add where to download
them!!
sets "Administrator" "Dekard"
sets "Email" "dekard@planetquake.com"
sets "URL" "http://www.planetquake.com/antibotics"
sets "Location" "Stroggos"
sets "CPU" "Dual P3 Xeon I wish"
sets "mappack" "http://www.myserver.com/mappack.zip" |
En dit als je zelf eentje opzet zonder q3a op te starten:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| seta sv_hostname "DM Server All Maps"
seta sv_maxclients 16
seta g_motd "Welcome to our Quake3 server"
seta g_quadfactor 4
seta g_gametype 0
seta timelimit 15
seta fraglimit 25
seta g_weaponrespawn 3
seta g_inactivity 3000
seta g_forcerespawn 0
seta rconpassword "password"
set d1 "map q3dm1 ; set nextmap vstr d2"
set d2 "map q3dm2 ; set nextmap vstr d3"
set d3 "map q3dm3 ; set nextmap vstr d1"
vstr d1 |
Je kan beide dingen ff opnieuw proberen.
Dus maak een nieuwe bestand aan en ga niet verder in je oude.