198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
fatal("could not find core textures (hint: run cube from the "
"parent of the bin directory)");
log("sound");
initsound();
log("cfg");
newmenu("frags\tpj\tping\tteam\tname");
newmenu("ping\tplr\tserver");
exec("data/keymap.cfg");
exec("data/menus.cfg");
exec("data/prefabs.cfg");
exec("data/sounds.cfg");
exec("servers.cfg");
if (!execfile("config.cfg"))
execfile("data/defaults.cfg");
exec("autoexec.cfg");
log("localconnect");
localconnect();
// if this map is changed, also change depthcorrect()
changemap(@"metl3");
log("mainloop");
|
|
|
|
|
|
|
|
|
|
|
|
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
fatal("could not find core textures (hint: run cube from the "
"parent of the bin directory)");
log("sound");
initsound();
log("cfg");
newmenu(@"frags\tpj\tping\tteam\tname");
newmenu(@"ping\tplr\tserver");
exec(@"data/keymap.cfg");
exec(@"data/menus.cfg");
exec(@"data/prefabs.cfg");
exec(@"data/sounds.cfg");
exec(@"servers.cfg");
if (!execfile(@"config.cfg"))
execfile(@"data/defaults.cfg");
exec(@"autoexec.cfg");
log("localconnect");
localconnect();
// if this map is changed, also change depthcorrect()
changemap(@"metl3");
log("mainloop");
|