]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/sv_cmd.qc
Merge remote-tracking branch 'origin/master' into samual/notification_rewrite
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / sv_cmd.qc
1 // =====================================================
2 //  Server side game commands code, reworked by Samual
3 //  Last updated: December 29th, 2011
4 // =====================================================
5
6 //  used by GameCommand_make_mapinfo()
7 void make_mapinfo_Think()
8 {
9         if(MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 0, 0, 1))
10         {
11                 print("Done rebuiling mapinfos.\n");
12                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
13                 remove(self);
14         }
15         else
16         {
17                 self.think = make_mapinfo_Think;
18                 self.nextthink = time;
19         }
20 }
21
22 //  used by GameCommand_extendmatchtime() and GameCommand_reducematchtime()
23 void changematchtime(float delta, float mi, float ma)
24 {
25         float cur;
26         float new;
27         float lim;
28
29         if(delta == 0)
30                 return;
31         if(autocvar_timelimit < 0)
32                 return;
33
34         if(mi <= 10)
35                 mi = 10; // at least ten sec in the future
36         cur = time - game_starttime;
37         if(cur > 0)
38                 mi += cur; // from current time!
39
40         lim = autocvar_timelimit * 60;
41
42         if(delta > 0)
43         {
44                 if(lim == 0)
45                         return; // cannot increase any further
46                 else if(lim < ma)
47                         new = min(ma, lim + delta);
48                 else // already above maximum: FAIL
49                         return;
50         }
51         else
52         {
53                 if(lim == 0) // infinite: try reducing to max, if we are allowed to
54                         new = max(mi, ma);
55                 else if(lim > mi) // above minimum: decrease
56                         new = max(mi, lim + delta);
57                 else // already below minimum: FAIL
58                         return;
59         }
60
61         cvar_set("timelimit", ftos(new / 60));
62 }
63
64
65 // =======================
66 //  Command Sub-Functions
67 // =======================
68
69 void GameCommand_adminmsg(float request, float argc)
70 {
71         switch(request)
72         {
73                 case CMD_REQUEST_COMMAND:
74                 {
75                         entity client;
76                         float accepted;
77                         
78                         string targets = strreplace(",", " ", argv(1));
79                         string original_targets = strreplace(" ", ", ", targets);
80                         string admin_message = argv(2);
81                         float infobartime = stof(argv(3));
82                         
83                         string successful, t;
84                         successful = string_null;
85                         
86                         if((targets) && (admin_message))
87                         {
88                                 for(;targets;)
89                                 {
90                                         t = car(targets); targets = cdr(targets);
91                                         
92                                         // Check to see if the player is a valid target
93                                         client = GetFilteredEntity(t);
94                                         accepted = VerifyClientEntity(client, TRUE, FALSE);
95                                         
96                                         if not(accepted > 0) 
97                                         {
98                                                 print("adminmsg: ", GetClientErrorString(accepted, t), (targets ? ", skipping to next player.\n" : ".\n")); 
99                                                 continue;
100                                         }
101                                         
102                                         // send the centerprint/console print or infomessage
103                                         if(infobartime)
104                                         {
105                                                 stuffcmd(client, sprintf("\ninfobar %f \"%s\"\n", infobartime, MakeConsoleSafe(admin_message)));
106                                         }
107                                         else
108                                         {
109                                                 centerprint(client, strcat("^3", admin_name(), ":\n^7", admin_message));
110                                                 sprint(client, strcat("\{1}\{13}^3", admin_name(), "^7: ", admin_message, "\n"));
111                                         }
112                                         
113                                         successful = strcat(successful, (successful ? ", " : ""), client.netname);
114                                         dprint("Message sent to ", client.netname, "\n");
115                                         continue;
116                                 }
117                                 
118                                 if(successful)
119                                         bprint("Successfully sent message '", admin_message, "' to ", successful, ".\n");
120                                 else
121                                         print("No players given (", original_targets, ") could receive the message.\n");
122                                         
123                                 return;
124                         }
125                 }
126                 
127                 default:
128                         print("Incorrect parameters for ^2adminmsg^7\n");
129                 case CMD_REQUEST_USAGE:
130                 {
131                         print("\nUsage:^3 sv_cmd adminmsg clients \"message\" [infobartime]\n");
132                         print("  'clients' is a list (separated by commas) of player entity ID's or nicknames\n");
133                         print("  If infobartime is provided, the message will be sent to infobar.\n");
134                         print("  Otherwise, it will just be sent as a centerprint message.\n");
135                         print("Examples: adminmsg 2,4 \"this infomessage will last for ten seconds\" 10\n");
136                         print("          adminmsg 2,5 \"this message will be a centerprint\"\n");
137                         return;
138                 }
139         }
140 }
141
142 void GameCommand_allready(float request)
143 {
144         switch(request)
145         {
146                 case CMD_REQUEST_COMMAND:
147                 {
148                         ReadyRestart();
149                         return;
150                 }
151                         
152                 default:
153                 case CMD_REQUEST_USAGE:
154                 {
155                         print("\nUsage:^3 sv_cmd allready\n");
156                         print("  No arguments required.\n");
157                         return;
158                 }
159         }
160 }
161
162 void GameCommand_allspec(float request, float argc)
163 {       
164         switch(request)
165         {
166                 case CMD_REQUEST_COMMAND:
167                 {
168                         entity client;
169                         string reason = argv(1);
170                         float i = 0;
171                         
172                         FOR_EACH_REALPLAYER(client)
173                         {
174                                 self = client;
175                                 PutObserverInServer();
176                                 ++i;
177                         }
178                         if(i) { bprint(strcat("Successfully forced all (", ftos(i), ") players to spectate", (reason ? strcat(" for reason: '", reason, "'") : ""), ".\n")); }
179                         else { print("No players found to spectate.\n"); }
180                         return;
181                 }
182                         
183                 default:
184                 case CMD_REQUEST_USAGE:
185                 {
186                         print("\nUsage:^3 sv_cmd allspec [reason]\n");
187                         print("  Where 'reason' is an optional argument for explanation of allspec command.\n");
188                         print("See also: ^2moveplayer, shuffleteams^7\n");
189                         return;
190                 }
191         }
192 }
193
194 void GameCommand_anticheat(float request, float argc) 
195 {
196         switch(request)
197         {
198                 case CMD_REQUEST_COMMAND:
199                 {
200                         entity client = GetIndexedEntity(argc, 1);
201                         float accepted = VerifyClientEntity(client, FALSE, FALSE);
202                         
203                         if(accepted > 0) 
204                         {
205                                 self = client;
206                                 anticheat_report();
207                                 return;
208                         }
209                         else
210                         {
211                                 print("anticheat: ", GetClientErrorString(accepted, argv(1)), ".\n"); 
212                         }
213                 }
214                         
215                 default:
216                         print("Incorrect parameters for ^2anticheat^7\n");
217                 case CMD_REQUEST_USAGE:
218                 {
219                         print("\nUsage:^3 sv_cmd anticheat client\n");
220                         print("  'client' is the entity number or name of the player.\n");
221                         return;
222                 }
223         }
224 }
225
226 void GameCommand_bbox(float request) 
227 {
228         switch(request)
229         {
230                 case CMD_REQUEST_COMMAND:
231                 {
232                         print("Original size: ", ftos(world.absmin_x), " ", ftos(world.absmin_y), " ", ftos(world.absmin_z));
233                         print(" ", ftos(world.absmax_x), " ", ftos(world.absmax_y), " ", ftos(world.absmax_z), "\n");
234                         print("Currently set size: ", ftos(world.mins_x), " ", ftos(world.mins_y), " ", ftos(world.mins_z));
235                         print(" ", ftos(world.maxs_x), " ", ftos(world.maxs_y), " ", ftos(world.maxs_z), "\n");
236                         print("Solid bounding box size:");
237
238                         tracebox('1 0 0' * world.absmin_x,
239                                                         '0 1 0' * world.absmin_y + '0 0 1' * world.absmin_z,
240                                                         '0 1 0' * world.absmax_y + '0 0 1' * world.absmax_z,
241                                                         '1 0 0' * world.absmax_x,
242                                         MOVE_WORLDONLY,
243                                         world);
244                         if(trace_startsolid)
245                                 print(" ", ftos(world.absmin_x));
246                         else
247                                 print(" ", ftos(trace_endpos_x));
248
249                         tracebox('0 1 0' * world.absmin_y,
250                                                         '1 0 0' * world.absmin_x + '0 0 1' * world.absmin_z,
251                                                         '1 0 0' * world.absmax_x + '0 0 1' * world.absmax_z,
252                                                         '0 1 0' * world.absmax_y,
253                                         MOVE_WORLDONLY,
254                                         world);
255                         if(trace_startsolid)
256                                 print(" ", ftos(world.absmin_y));
257                         else
258                                 print(" ", ftos(trace_endpos_y));
259
260                         tracebox('0 0 1' * world.absmin_z,
261                                                         '1 0 0' * world.absmin_x + '0 1 0' * world.absmin_y,
262                                                         '1 0 0' * world.absmax_x + '0 1 0' * world.absmax_y,
263                                                         '0 0 1' * world.absmax_z,
264                                         MOVE_WORLDONLY,
265                                         world);
266                         if(trace_startsolid)
267                                 print(" ", ftos(world.absmin_z));
268                         else
269                                 print(" ", ftos(trace_endpos_z));
270
271                         tracebox('1 0 0' * world.absmax_x,
272                                                         '0 1 0' * world.absmin_y + '0 0 1' * world.absmin_z,
273                                                         '0 1 0' * world.absmax_y + '0 0 1' * world.absmax_z,
274                                                         '1 0 0' * world.absmin_x,
275                                         MOVE_WORLDONLY,
276                                         world);
277                         if(trace_startsolid)
278                                 print(" ", ftos(world.absmax_x));
279                         else
280                                 print(" ", ftos(trace_endpos_x));
281
282                         tracebox('0 1 0' * world.absmax_y,
283                                                         '1 0 0' * world.absmin_x + '0 0 1' * world.absmin_z,
284                                                         '1 0 0' * world.absmax_x + '0 0 1' * world.absmax_z,
285                                                         '0 1 0' * world.absmin_y,
286                                         MOVE_WORLDONLY,
287                                         world);
288                         if(trace_startsolid)
289                                 print(" ", ftos(world.absmax_y));
290                         else
291                                 print(" ", ftos(trace_endpos_y));
292
293                         tracebox('0 0 1' * world.absmax_z,
294                                                         '1 0 0' * world.absmin_x + '0 1 0' * world.absmin_y,
295                                                         '1 0 0' * world.absmax_x + '0 1 0' * world.absmax_y,
296                                                         '0 0 1' * world.absmin_z,
297                                         MOVE_WORLDONLY,
298                                         world);
299                         if(trace_startsolid)
300                                 print(" ", ftos(world.absmax_z));
301                         else
302                                 print(" ", ftos(trace_endpos_z));
303                                 
304                         print("\n");
305                         return;
306                 }
307                         
308                 default:
309                 case CMD_REQUEST_USAGE:
310                 {
311                         print("\nUsage:^3 sv_cmd bbox\n");
312                         print("  No arguments required.\n");
313                         print("See also: ^2gettaginfo, trace^7\n");
314                         return;
315                 }
316         }
317 }
318
319 void GameCommand_bot_cmd(float request, float argc, string command)
320 {
321         switch(request)
322         {
323                 case CMD_REQUEST_COMMAND:
324                 {
325                         entity bot;
326                         
327                         if(argv(1) == "reset")
328                         {
329                                 bot_resetqueues();
330                                 return;
331                         }
332                         else if(argv(1) == "setbots")
333                         {
334                                 cvar_settemp("bot_vs_human", "0");
335                                 cvar_settemp("minplayers", "0");
336                                 cvar_settemp("bot_number", "0");
337                                 bot_fixcount();
338                                 cvar_settemp("bot_number", argv(2));
339                                 if(!bot_fixcount())
340                                         print("Sorry, could not set requested bot count\n");
341                                 return;
342                         }
343                         else if(argv(1) == "load" && argc == 3)
344                         {
345                                 float fh, i;
346                                 string s;
347                                 fh = fopen(argv(2), FILE_READ);
348                                 if(fh < 0)
349                                 {
350                                         print("cannot open the file\n");
351                                         return;
352                                 }
353
354                                 i = 0;
355                                 while((s = fgets(fh)))
356                                 {
357                                         argc = tokenize_console(s);
358
359                                         if(argc >= 3 && argv(0) == "sv_cmd" && argv(1) == "bot_cmd")
360                                         {
361                                                 if(argv(2) == "reset")
362                                                 {
363                                                         bot_resetqueues();
364                                                 }
365                                                 else if(argv(2) == "setbots")
366                                                 {
367                                                         cvar_settemp("bot_vs_human", "0");
368                                                         cvar_settemp("minplayers", "0");
369                                                         cvar_settemp("bot_number", "0");
370                                                         bot_fixcount();
371                                                         cvar_settemp("bot_number", argv(3));
372                                                         if(!bot_fixcount())
373                                                                 print("Sorry, could not set requested bot count\n");
374                                                 }
375                                                 else
376                                                 {
377                                                         // let's start at token 2 so we can skip sv_cmd bot_cmd
378                                                         bot = find_bot_by_number(stof(argv(2)));
379                                                         if(bot == world)
380                                                                 bot = find_bot_by_name(argv(2));
381                                                         if(bot)
382                                                                 bot_queuecommand(bot, substring(s, argv_start_index(3), -1));
383                                                 }
384                                         }
385                                         else
386                                                 localcmd(strcat(s, "\n"));
387
388                                         ++i;
389                                 }
390                                 print(ftos(i), " commands read\n");
391                                 fclose(fh);
392                                 return;
393                         }
394                         else if(argv(1) == "help")
395                         {
396                                 if(argv(2))
397                                         bot_cmdhelp(argv(2));
398                                 else
399                                         bot_list_commands();
400                                 return;
401                         }
402                         else if(argc >= 3) // this comes last
403                         {
404                                 bot = find_bot_by_number(stof(argv(1)));
405                                 if(bot == world)
406                                         bot = find_bot_by_name(argv(1));
407                                 if(bot)
408                                 {
409                                         print(strcat("Command '", substring(command, argv_start_index(2), -1), "' sent to bot ", bot.netname, "\n"));
410                                         bot_queuecommand(bot, substring(command, argv_start_index(2), -1));
411                                         return;
412                                 }
413                                 else
414                                         print(strcat("Error: Can't find bot with the name or id '", argv(1),"' - Did you mistype the command?\n")); // don't return so that usage is shown
415                         }
416                 }
417                         
418                 default:
419                         print("Incorrect parameters for ^2bot_cmd^7\n");
420                 case CMD_REQUEST_USAGE:
421                 {
422                         print("\nUsage:^3 sv_cmd bot_cmd client command [argument]\n");
423                         print("  'client' can be either the name or entity id of the bot\n");
424                         print("  For full list of commands, see bot_cmd help [command].\n");
425                         print("Examples: sv_cmd bot_cmd client cc \"say something\"\n");
426                         print("          sv_cmd bot_cmd client presskey jump\n");
427                         return;
428                 }
429         }
430 }
431
432 void GameCommand_cointoss(float request, float argc)
433 {
434         switch(request)
435         {
436                 case CMD_REQUEST_COMMAND:
437                 {
438                         entity client;
439                         string result1 = (argv(2) ? strcat("^7", argv(1), "^3!\n") : "^1HEADS^3!\n");
440                         string result2 = (argv(2) ? strcat("^7", argv(2), "^3!\n") : "^4TAILS^3!\n");
441                         string choice = ((random() > 0.5) ? result1 : result2);
442                         
443                         FOR_EACH_CLIENT(client)
444                                 centerprint(client, strcat("^3Throwing coin... Result: ", choice));
445                         bprint(strcat("^3Throwing coin... Result: ", choice));
446                         return;
447                 }
448                 
449                 default:
450                 case CMD_REQUEST_USAGE:
451                 {
452                         print("\nUsage:^3 sv_cmd cointoss [result1 result2]\n");
453                         print("  Where 'result1' and 'result2' are user created options.\n");
454                         return;
455                 }
456         }
457 }
458
459 void GameCommand_database(float request, float argc) 
460 {
461         switch(request)
462         {
463                 case CMD_REQUEST_COMMAND:
464                 {
465                         if(argc == 3)
466                         {
467                                 if(argv(1) == "save")
468                                 {
469                                         db_save(ServerProgsDB, argv(2));
470                                         print(strcat("Copied serverprogs database to '", argv(2), "' in the data directory.\n"));
471                                         return;
472                                 }
473                                 else if(argv(1) == "dump")
474                                 {
475                                         db_dump(ServerProgsDB, argv(2));
476                                         print("DB dumped.\n"); // wtf does this do?
477                                         return;
478                                 }
479                                 else if(argv(1) == "load")
480                                 {
481                                         db_close(ServerProgsDB);
482                                         ServerProgsDB = db_load(argv(2));
483                                         print(strcat("Loaded '", argv(2), "' as new serverprogs database.\n"));
484                                         return;
485                                 }
486                         }
487                 }
488                         
489                 default:
490                         print("Incorrect parameters for ^2database^7\n");
491                 case CMD_REQUEST_USAGE:
492                 {
493                         print("\nUsage:^3 sv_cmd database action filename\n");
494                         print("  Where 'action' is the command to complete,\n");
495                         print("  and 'filename' is what it acts upon.\n");
496                         print("  Full list of commands here: \"save, dump, load.\"\n");
497                         return;
498                 }
499         }
500 }
501
502 void GameCommand_defer_clear(float request, float argc)
503 {       
504         switch(request)
505         {
506                 case CMD_REQUEST_COMMAND:
507                 {
508                         entity client;
509                         float accepted;
510                         
511                         if(argc >= 2)
512                         {
513                                 client = GetIndexedEntity(argc, 1);
514                                 accepted = VerifyClientEntity(client, TRUE, FALSE);
515                                 
516                                 if(accepted > 0)
517                                 {
518                                         stuffcmd(client, "defer clear\n");
519                                         print("defer clear stuffed to ", client.netname, "\n");
520                                 }
521                                 else { print("defer_clear: ", GetClientErrorString(accepted, argv(1)), ".\n"); }
522                                 
523                                 return;
524                         }
525                 }
526                 
527                 default:
528                         print("Incorrect parameters for ^2defer_clear^7\n");
529                 case CMD_REQUEST_USAGE:
530                 {
531                         print("\nUsage:^3 sv_cmd defer_clear client\n");
532                         print("  'client' is the entity number or name of the player.\n");
533                         print("See also: ^2defer_clear_all^7\n");
534                         return;
535                 }
536         }
537 }
538
539 void GameCommand_defer_clear_all(float request)
540 {       
541         switch(request)
542         {
543                 case CMD_REQUEST_COMMAND:
544                 {
545                         entity client;
546                         float i = 0;
547                         float argc;
548                         
549                         FOR_EACH_CLIENT(client)
550                         {
551                                 argc = tokenize_console(strcat("defer_clear ", ftos(num_for_edict(client))));
552                                 GameCommand_defer_clear(CMD_REQUEST_COMMAND, argc);     
553                                 ++i;
554                         }
555                         if(i) { print(strcat("Successfully stuffed defer clear to all clients (", ftos(i), ")\n")); } // should a message be added if no players were found? 
556                         return;
557                 }
558                 
559                 default:
560                 case CMD_REQUEST_USAGE:
561                 {
562                         print("\nUsage:^3 sv_cmd defer_clear_all\n");
563                         print("  No arguments required.\n");
564                         print("See also: ^2defer_clear^7\n");
565                         return;
566                 }
567         }
568 }
569
570 void GameCommand_delrec(float request, float argc)  // perhaps merge later with records and printstats and such?
571 {
572         switch(request)
573         {
574                 case CMD_REQUEST_COMMAND:
575                 {
576                         if(argv(1))
577                         {
578                                 if(argv(2))
579                                         race_deleteTime(argv(2), stof(argv(1)));
580                                 else
581                                         race_deleteTime(GetMapname(), stof(argv(1)));
582                                 return;
583                         }
584                 }       
585                 
586                 default:
587                         print("Incorrect parameters for ^2delrec^7\n");
588                 case CMD_REQUEST_USAGE:
589                 {
590                         print("\nUsage:^3 sv_cmd delrec ranking [map]\n");
591                         print("  'ranking' is which ranking level to clear up to, \n");
592                         print("  it will clear all records up to nth place.\n");
593                         print("  if 'map' is not provided it will use current map.\n");
594                         return;
595                 }
596         }
597 }
598
599 void GameCommand_effectindexdump(float request) 
600 {
601         switch(request)
602         {
603                 case CMD_REQUEST_COMMAND:
604                 {
605                         float fh, d;
606                         string s;
607                         
608                         d = db_create();
609                         print("begin of effects list\n");
610                         db_put(d, "TE_GUNSHOT", "1"); print("effect TE_GUNSHOT is ", ftos(particleeffectnum("TE_GUNSHOT")), "\n");
611                         db_put(d, "TE_GUNSHOTQUAD", "1"); print("effect TE_GUNSHOTQUAD is ", ftos(particleeffectnum("TE_GUNSHOTQUAD")), "\n");
612                         db_put(d, "TE_SPIKE", "1"); print("effect TE_SPIKE is ", ftos(particleeffectnum("TE_SPIKE")), "\n");
613                         db_put(d, "TE_SPIKEQUAD", "1"); print("effect TE_SPIKEQUAD is ", ftos(particleeffectnum("TE_SPIKEQUAD")), "\n");
614                         db_put(d, "TE_SUPERSPIKE", "1"); print("effect TE_SUPERSPIKE is ", ftos(particleeffectnum("TE_SUPERSPIKE")), "\n");
615                         db_put(d, "TE_SUPERSPIKEQUAD", "1"); print("effect TE_SUPERSPIKEQUAD is ", ftos(particleeffectnum("TE_SUPERSPIKEQUAD")), "\n");
616                         db_put(d, "TE_WIZSPIKE", "1"); print("effect TE_WIZSPIKE is ", ftos(particleeffectnum("TE_WIZSPIKE")), "\n");
617                         db_put(d, "TE_KNIGHTSPIKE", "1"); print("effect TE_KNIGHTSPIKE is ", ftos(particleeffectnum("TE_KNIGHTSPIKE")), "\n");
618                         db_put(d, "TE_EXPLOSION", "1"); print("effect TE_EXPLOSION is ", ftos(particleeffectnum("TE_EXPLOSION")), "\n");
619                         db_put(d, "TE_EXPLOSIONQUAD", "1"); print("effect TE_EXPLOSIONQUAD is ", ftos(particleeffectnum("TE_EXPLOSIONQUAD")), "\n");
620                         db_put(d, "TE_TAREXPLOSION", "1"); print("effect TE_TAREXPLOSION is ", ftos(particleeffectnum("TE_TAREXPLOSION")), "\n");
621                         db_put(d, "TE_TELEPORT", "1"); print("effect TE_TELEPORT is ", ftos(particleeffectnum("TE_TELEPORT")), "\n");
622                         db_put(d, "TE_LAVASPLASH", "1"); print("effect TE_LAVASPLASH is ", ftos(particleeffectnum("TE_LAVASPLASH")), "\n");
623                         db_put(d, "TE_SMALLFLASH", "1"); print("effect TE_SMALLFLASH is ", ftos(particleeffectnum("TE_SMALLFLASH")), "\n");
624                         db_put(d, "TE_FLAMEJET", "1"); print("effect TE_FLAMEJET is ", ftos(particleeffectnum("TE_FLAMEJET")), "\n");
625                         db_put(d, "EF_FLAME", "1"); print("effect EF_FLAME is ", ftos(particleeffectnum("EF_FLAME")), "\n");
626                         db_put(d, "TE_BLOOD", "1"); print("effect TE_BLOOD is ", ftos(particleeffectnum("TE_BLOOD")), "\n");
627                         db_put(d, "TE_SPARK", "1"); print("effect TE_SPARK is ", ftos(particleeffectnum("TE_SPARK")), "\n");
628                         db_put(d, "TE_PLASMABURN", "1"); print("effect TE_PLASMABURN is ", ftos(particleeffectnum("TE_PLASMABURN")), "\n");
629                         db_put(d, "TE_TEI_G3", "1"); print("effect TE_TEI_G3 is ", ftos(particleeffectnum("TE_TEI_G3")), "\n");
630                         db_put(d, "TE_TEI_SMOKE", "1"); print("effect TE_TEI_SMOKE is ", ftos(particleeffectnum("TE_TEI_SMOKE")), "\n");
631                         db_put(d, "TE_TEI_BIGEXPLOSION", "1"); print("effect TE_TEI_BIGEXPLOSION is ", ftos(particleeffectnum("TE_TEI_BIGEXPLOSION")), "\n");
632                         db_put(d, "TE_TEI_PLASMAHIT", "1"); print("effect TE_TEI_PLASMAHIT is ", ftos(particleeffectnum("TE_TEI_PLASMAHIT")), "\n");
633                         db_put(d, "EF_STARDUST", "1"); print("effect EF_STARDUST is ", ftos(particleeffectnum("EF_STARDUST")), "\n");
634                         db_put(d, "TR_ROCKET", "1"); print("effect TR_ROCKET is ", ftos(particleeffectnum("TR_ROCKET")), "\n");
635                         db_put(d, "TR_GRENADE", "1"); print("effect TR_GRENADE is ", ftos(particleeffectnum("TR_GRENADE")), "\n");
636                         db_put(d, "TR_BLOOD", "1"); print("effect TR_BLOOD is ", ftos(particleeffectnum("TR_BLOOD")), "\n");
637                         db_put(d, "TR_WIZSPIKE", "1"); print("effect TR_WIZSPIKE is ", ftos(particleeffectnum("TR_WIZSPIKE")), "\n");
638                         db_put(d, "TR_SLIGHTBLOOD", "1"); print("effect TR_SLIGHTBLOOD is ", ftos(particleeffectnum("TR_SLIGHTBLOOD")), "\n");
639                         db_put(d, "TR_KNIGHTSPIKE", "1"); print("effect TR_KNIGHTSPIKE is ", ftos(particleeffectnum("TR_KNIGHTSPIKE")), "\n");
640                         db_put(d, "TR_VORESPIKE", "1"); print("effect TR_VORESPIKE is ", ftos(particleeffectnum("TR_VORESPIKE")), "\n");
641                         db_put(d, "TR_NEHAHRASMOKE", "1"); print("effect TR_NEHAHRASMOKE is ", ftos(particleeffectnum("TR_NEHAHRASMOKE")), "\n");
642                         db_put(d, "TR_NEXUIZPLASMA", "1"); print("effect TR_NEXUIZPLASMA is ", ftos(particleeffectnum("TR_NEXUIZPLASMA")), "\n");
643                         db_put(d, "TR_GLOWTRAIL", "1"); print("effect TR_GLOWTRAIL is ", ftos(particleeffectnum("TR_GLOWTRAIL")), "\n");
644                         db_put(d, "TR_SEEKER", "1"); print("effect TR_SEEKER is ", ftos(particleeffectnum("TR_SEEKER")), "\n");
645                         db_put(d, "SVC_PARTICLE", "1"); print("effect SVC_PARTICLE is ", ftos(particleeffectnum("SVC_PARTICLE")), "\n");
646
647                         fh = fopen("effectinfo.txt", FILE_READ);
648                         while((s = fgets(fh)))
649                         {
650                                 tokenize_console(s);
651                                 if(argv(0) == "effect")
652                                 {
653                                         if(db_get(d, argv(1)) != "1")
654                                         {
655                                                 if(particleeffectnum(argv(1)) >= 0)
656                                                         print("effect ", argv(1), " is ", ftos(particleeffectnum(argv(1))), "\n");
657                                                 db_put(d, argv(1), "1");
658                                         }
659                                 }
660                         }
661                         print("end of effects list\n");
662
663                         db_close(d);
664                         return;
665                 }
666                         
667                 default:
668                 case CMD_REQUEST_USAGE:
669                 {
670                         print("\nUsage:^3 sv_cmd effectindexdump\n");
671                         print("  No arguments required.\n");
672                         return;
673                 }
674         }
675 }
676
677 void GameCommand_extendmatchtime(float request) 
678 {
679         switch(request)
680         {
681                 case CMD_REQUEST_COMMAND:
682                 {
683                         changematchtime(autocvar_timelimit_increment * 60, autocvar_timelimit_min * 60, autocvar_timelimit_max * 60);
684                         return;
685                 }
686                         
687                 default:
688                 case CMD_REQUEST_USAGE:
689                 {
690                         print("\nUsage:^3 sv_cmd extendmatchtime\n");
691                         print("  No arguments required.\n");
692                         print("See also: ^2reducematchtime^7\n");
693                         return;
694                 }
695         }
696 }
697
698 void GameCommand_find(float request, float argc)  // is this even needed? We have prvm_edicts command and such ANYWAY
699 {       
700         switch(request)
701         {
702                 case CMD_REQUEST_COMMAND:
703                 {
704                         entity client;
705                         
706                         for(client = world; (client = find(client, classname, argv(1))); )
707                                 print(etos(client), "\n");
708                                 
709                         return;
710                 }
711                         
712                 default:
713                         print("Incorrect parameters for ^2find^7\n");
714                 case CMD_REQUEST_USAGE:
715                 {
716                         print("\nUsage:^3 sv_cmd find classname\n");
717                         print("  Where 'classname' is the classname to search for.\n");
718                         return;
719                 }
720         }
721 }
722
723 void GameCommand_gametype(float request, float argc) 
724 {       
725         switch(request)
726         {
727                 case CMD_REQUEST_COMMAND:
728                 {
729                         if(argv(1) != "")
730                         {
731                                 string s = argv(1);
732                                 float t = MapInfo_Type_FromString(s), tsave = MapInfo_CurrentGametype();
733                                 
734                                 if(t)
735                                 {
736                                         MapInfo_SwitchGameType(t);
737                                         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
738                                         if(MapInfo_count > 0)
739                                                 bprint("Game type successfully switched to ", s, "\n");
740                                         else
741                                         {
742                                                 bprint("Cannot use this game type: no map for it found\n");
743                                                 MapInfo_SwitchGameType(tsave);
744                                                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
745                                         }
746                                 }
747                                 else
748                                         bprint("Game type switch to ", s, " failed: this type does not exist!\n");
749                                         
750                                 return;
751                         }
752                 }
753                         
754                 default:
755                         print("Incorrect parameters for ^2gametype^7\n");
756                 case CMD_REQUEST_USAGE:
757                 {
758                         print("\nUsage:^3 sv_cmd gametype mode\n");
759                         print("  Where 'mode' is the gametype mode to switch to.\n");
760                         print("See also: ^2gotomap^7\n");
761                         return;
762                 }
763         }
764 }
765
766 void GameCommand_gettaginfo(float request, float argc) 
767 {       
768         switch(request)
769         {
770                 case CMD_REQUEST_COMMAND:
771                 {
772                         entity tmp_entity;
773                         float i;
774                         vector v;
775                         
776                         if(argc >= 4)
777                         {
778                                 tmp_entity = spawn();
779                                 if(argv(1) == "w")
780                                         setmodel(tmp_entity, (nextent(world)).weaponentity.model);
781                                 else
782                                 {
783                                         precache_model(argv(1));
784                                         setmodel(tmp_entity, argv(1));
785                                 }
786                                 tmp_entity.frame = stof(argv(2));
787                                 if(substring(argv(3), 0, 1) == "#")
788                                         i = stof(substring(argv(3), 1, -1));
789                                 else
790                                         i = gettagindex(tmp_entity, argv(3));
791                                 if(i)
792                                 {
793                                         v = gettaginfo(tmp_entity, i);
794                                         print("model ", tmp_entity.model, " frame ", ftos(tmp_entity.frame), " tag ", gettaginfo_name);
795                                         print(" index ", ftos(i), " parent ", ftos(gettaginfo_parent), "\n");
796                                         print(" vector = ", ftos(v_x), " ", ftos(v_y), " ", ftos(v_z), "\n");
797                                         print(" offset = ", ftos(gettaginfo_offset_x), " ", ftos(gettaginfo_offset_y), " ", ftos(gettaginfo_offset_z), "\n");
798                                         print(" forward = ", ftos(gettaginfo_forward_x), " ", ftos(gettaginfo_forward_y), " ", ftos(gettaginfo_forward_z), "\n");
799                                         print(" right = ", ftos(gettaginfo_right_x), " ", ftos(gettaginfo_right_y), " ", ftos(gettaginfo_right_z), "\n");
800                                         print(" up = ", ftos(gettaginfo_up_x), " ", ftos(gettaginfo_up_y), " ", ftos(gettaginfo_up_z), "\n");
801                                         if(argc >= 6)
802                                         {
803                                                 v_y = -v_y;
804                                                 localcmd(strcat(argv(4), vtos(v), argv(5), "\n"));
805                                         }
806                                 }
807                                 else
808                                         print("bone not found\n");
809                                         
810                                 remove(tmp_entity);
811                                 return;
812                         }
813                 }
814                         
815                 default:
816                         print("Incorrect parameters for ^2gettaginfo^7\n");
817                 case CMD_REQUEST_USAGE:
818                 {
819                         print("\nUsage:^3 sv_cmd gettaginfo model frame index [command one] [command two]\n");
820                         print("See also: ^2bbox, trace^7\n");
821                         return;
822                 }
823         }
824 }
825
826 void GameCommand_animbench(float request, float argc) 
827 {
828         switch(request)
829         {
830                 case CMD_REQUEST_COMMAND:
831                 {
832                         entity tmp_entity;
833                         float i;
834                         vector v;
835
836                         if(argc >= 4)
837                         {
838                                 tmp_entity = spawn();
839                                 if(argv(1) == "w")
840                                         setmodel(tmp_entity, (nextent(world)).weaponentity.model);
841                                 else
842                                 {
843                                         precache_model(argv(1));
844                                         setmodel(tmp_entity, argv(1));
845                                 }
846                                 float f1 = stof(argv(2));
847                                 float f2 = stof(argv(3));
848                                 float t0;
849                                 float t1 = 0;
850                                 float t2 = 0;
851                                 float n = 0;
852
853                                 while(t1 + t2 < 1)
854                                 {
855                                         tmp_entity.frame = f1;
856                                         t0 = gettime(GETTIME_HIRES);
857                                         getsurfacepoint(tmp_entity, 0, 0);
858                                         t1 += gettime(GETTIME_HIRES) - t0;
859                                         tmp_entity.frame = f2;
860                                         t0 = gettime(GETTIME_HIRES);
861                                         getsurfacepoint(tmp_entity, 0, 0);
862                                         t2 += gettime(GETTIME_HIRES) - t0;
863                                         n += 1;
864                                 }
865                                 print("model ", tmp_entity.model, " frame ", ftos(f1), " animtime ", ftos(n / t1), "/s\n");
866                                 print("model ", tmp_entity.model, " frame ", ftos(f2), " animtime ", ftos(n / t2), "/s\n");
867
868                                 remove(tmp_entity);
869                                 return;
870                         }
871                 }
872
873                 default:
874                         print("Incorrect parameters for ^2gettaginfo^7\n");
875                 case CMD_REQUEST_USAGE:
876                 {
877                         print("\nUsage:^3 sv_cmd gettaginfo model frame index [command one] [command two]\n");
878                         print("See also: ^2bbox, trace^7\n");
879                         return;
880                 }
881         }
882 }
883
884 void GameCommand_gotomap(float request, float argc)
885 {
886         switch(request)
887         {
888                 case CMD_REQUEST_COMMAND:
889                 {
890                         if(argv(1))
891                         {
892                                 print(GotoMap(argv(1)), "\n");
893                                 return;
894                         }
895                 }
896                         
897                 default:
898                         print("Incorrect parameters for ^2gotomap^7\n");
899                 case CMD_REQUEST_USAGE:
900                 {
901                         print("\nUsage:^3 sv_cmd gotomap map\n");
902                         print("  Where 'map' is the *.bsp file to change to.\n");
903                         print("See also: ^2gametype^7\n");
904                         return;
905                 }
906         }
907 }
908
909 void GameCommand_lockteams(float request)
910 {
911         switch(request)
912         {
913                 case CMD_REQUEST_COMMAND:
914                 {
915                         if(teamplay)
916                         {
917                                 lockteams = 1;
918                                 bprint("^1The teams are now locked.\n");
919                         }
920                         else
921                         {
922                                 bprint("lockteams command can only be used in a team-based gamemode.\n");
923                         }
924                         return;
925                 }
926                         
927                 default:
928                 case CMD_REQUEST_USAGE:
929                 {
930                         print("\nUsage:^3 sv_cmd lockteams\n");
931                         print("  No arguments required.\n");
932                         print("See also: ^2unlockteams^7\n");
933                         return;
934                 }
935         }
936 }
937
938 void GameCommand_make_mapinfo(float request) 
939 {
940         switch(request)
941         {
942                 case CMD_REQUEST_COMMAND:
943                 { 
944                         entity tmp_entity;
945                         
946                         tmp_entity = spawn();
947                         tmp_entity.classname = "make_mapinfo";
948                         tmp_entity.think = make_mapinfo_Think;
949                         tmp_entity.nextthink = time;
950                         MapInfo_Enumerate();
951                         return;
952                 }
953                         
954                 default:
955                 case CMD_REQUEST_USAGE:
956                 {
957                         print("\nUsage:^3 sv_cmd make_mapinfo\n");
958                         print("  No arguments required.\n");
959                         print("See also: ^2radarmap^7\n");
960                         return;
961                 }
962         }
963 }
964
965 void GameCommand_moveplayer(float request, float argc)
966 {
967         switch(request)
968         {
969                 case CMD_REQUEST_COMMAND:
970                 {
971                         float accepted;
972                         entity client;
973         
974                         string targets = strreplace(",", " ", argv(1));
975                         string original_targets = strreplace(" ", ", ", targets);
976                         string destination = argv(2);
977                         string notify = argv(3);
978                         
979                         string successful, t;
980                         successful = string_null;
981                         
982                         // lets see if the target(s) even actually exist.
983                         if((targets) && (destination))
984                         { 
985                                 for(;targets;)
986                                 {
987                                         t = car(targets); targets = cdr(targets);
988
989                                         // Check to see if the player is a valid target
990                                         client = GetFilteredEntity(t);
991                                         accepted = VerifyClientEntity(client, FALSE, FALSE);
992                                         
993                                         if not(accepted > 0) 
994                                         {
995                                                 print("moveplayer: ", GetClientErrorString(accepted, t), (targets ? ", skipping to next player.\n" : ".\n")); 
996                                                 continue;
997                                         }
998                                         
999                                         // Where are we putting this player?
1000                                         if(destination == "spec" || destination == "spectator") 
1001                                         {
1002                                                 if(client.classname != "spectator" && client.classname != "observer")
1003                                                 {
1004                                                         self = client;
1005                                                         PutObserverInServer();
1006                                                         
1007                                                         successful = strcat(successful, (successful ? ", " : ""), client.netname);
1008                                                 }
1009                                                 else
1010                                                 {
1011                                                         print("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") is already spectating.\n");
1012                                                 }
1013                                                 continue;
1014                                         }
1015                                         else
1016                                         {
1017                                                 if(client.classname != "spectator" && client.classname != "observer")
1018                                                 {
1019                                                         if(teamplay)
1020                                                         {
1021                                                                 // set up
1022                                                                 float team_id;
1023                                                                 float save = client.team_forced;
1024                                                                 client.team_forced = 0;
1025
1026                                                                 // find the team to move the player to
1027                                                                 team_id = Team_ColorToTeam(destination);
1028                                                                 if(team_id == client.team) // already on the destination team
1029                                                                 {
1030                                                                         // keep the forcing undone
1031                                                                         print("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") is already on the ", Team_ColoredFullName(client.team), (targets ? "^7, skipping to next player.\n" : "^7.\n"));
1032                                                                         continue;
1033                                                                 } 
1034                                                                 else if(team_id == 0)  // auto team
1035                                                                 {
1036                                                                         team_id = Team_NumberToTeam(FindSmallestTeam(client, FALSE));
1037                                                                 }
1038                                                                 else
1039                                                                 {
1040                                                                         CheckAllowedTeams(client);
1041                                                                 }
1042                                                                 client.team_forced = save;
1043                                                                 
1044                                                                 // Check to see if the destination team is even available
1045                                                                 switch(team_id) 
1046                                                                 {
1047                                                                         case FL_TEAM_1: if(c1 == -1) { print("Sorry, can't move player to red team if it doesn't exist.\n"); return; } break;
1048                                                                         case FL_TEAM_2: if(c2 == -1) { print("Sorry, can't move player to blue team if it doesn't exist.\n"); return; } break;
1049                                                                         case FL_TEAM_3: if(c3 == -1) { print("Sorry, can't move player to yellow team if it doesn't exist.\n"); return; } break;
1050                                                                         case FL_TEAM_4: if(c4 == -1) { print("Sorry, can't move player to pink team if it doesn't exist.\n"); return; } break;
1051                                                                         
1052                                                                         default: print("Sorry, can't move player here if team ", destination, " doesn't exist.\n"); return;
1053                                                                 }
1054                                                                 
1055                                                                 // If so, lets continue and finally move the player
1056                                                                 client.team_forced = 0;
1057                                                                 MoveToTeam(client, team_id, 6, stof(notify));
1058                                                                 successful = strcat(successful, (successful ? ", " : ""), client.netname);
1059                                                                 print("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") has been moved to the ", Team_ColoredFullName(team_id), "^7.\n");
1060                                                                 continue;
1061                                                         }
1062                                                         else
1063                                                         {
1064                                                                 print("Can't change teams when currently not playing a team game.\n");
1065                                                                 return;
1066                                                         }
1067                                                 }
1068                                                 else
1069                                                 {
1070                                                         print("Can't change teams if the player isn't in the game.\n"); // well technically we could, but should we allow that? :P 
1071                                                         return;
1072                                                 }
1073                                         }
1074                                 }
1075                                 
1076                                 if(successful)
1077                                         bprint("Successfully moved players ", successful, " to destination ", destination, ".\n");
1078                                 else
1079                                         print("No players given (", original_targets, ") are able to move.\n");
1080                                         
1081                                 return; // still correct parameters so return to avoid usage print
1082                         }
1083                 }
1084                         
1085                 default:
1086                         print("Incorrect parameters for ^2moveplayer^7\n");
1087                 case CMD_REQUEST_USAGE:
1088                 {
1089                         print("\nUsage:^3 sv_cmd moveplayer clients destination [notify]\n");
1090                         print("  'clients' is a list (separated by commas) of player entity ID's or nicknames\n");
1091                         print("  'destination' is what to send the player to, be it team or spectating\n");
1092                         print("  Full list of destinations here: \"spec, spectator, red, blue, yellow, pink, auto.\"\n");
1093                         print("  'notify' is whether or not to send messages notifying of the move. Detail below.\n");
1094                         print("    0 (00) automove centerprint, admin message; 1 (01) automove centerprint, no admin message\n");
1095                         print("    2 (10) no centerprint, admin message; 3 (11) no centerprint, no admin message\n");
1096                         print("Examples: sv_cmd moveplayer 1,3,5 red 3\n");
1097                         print("          sv_cmd moveplayer 2 spec \n");
1098                         print("See also: ^2allspec, shuffleteams^7\n");
1099                         return;
1100                 }
1101         }
1102 }
1103
1104 void GameCommand_nospectators(float request) 
1105 {
1106         switch(request)
1107         {
1108                 case CMD_REQUEST_COMMAND:
1109                 {
1110                         blockSpectators = 1;
1111                         entity plr;
1112                         FOR_EACH_CLIENT(plr) //give every spectator <g_maxplayers_spectator_blocktime> seconds time to become a player
1113                         {
1114                                 if(plr.classname == "spectator" || plr.classname == "observer")
1115                                 {
1116                                         plr.spectatortime = time;
1117                                         sprint(plr, strcat("^7You have to become a player within the next ", ftos(autocvar_g_maxplayers_spectator_blocktime), " seconds, otherwise you will be kicked, because spectators aren't allowed at this time!\n"));
1118                                 }
1119                         }
1120                         bprint(strcat("^7All spectators will be automatically kicked when not joining the game after ", ftos(autocvar_g_maxplayers_spectator_blocktime), " seconds!\n"));
1121                         return;
1122                 }
1123                         
1124                 default:
1125                 case CMD_REQUEST_USAGE:
1126                 {
1127                         print("\nUsage:^3 sv_cmd nospectators\n");
1128                         print("  No arguments required.\n");
1129                         return;
1130                 }
1131         }
1132 }
1133
1134 void GameCommand_playerdemo(float request, float argc)
1135 {       
1136         switch(request)
1137         {
1138                 case CMD_REQUEST_COMMAND:
1139                 {
1140                         if(argv(2) && argv(3))
1141                         {
1142                                 entity client;
1143                                 float i, n, accepted;
1144                                 
1145                                 switch(argv(1))
1146                                 {
1147                                         case "read":
1148                                         {
1149                                                 client = GetIndexedEntity(argc, 2);
1150                                                 accepted = VerifyClientEntity(client, FALSE, TRUE);
1151                                                 
1152                                                 if not(accepted > 0) 
1153                                                 {
1154                                                         print("playerdemo: read: ", GetClientErrorString(accepted, argv(2)), ".\n"); 
1155                                                         return;
1156                                                 }
1157                                                 
1158                                                 self = client;
1159                                                 playerdemo_open_read(argv(next_token));
1160                                                 return;
1161                                         }
1162                                         
1163                                         case "write":
1164                                         {
1165                                                 client = GetIndexedEntity(argc, 2);
1166                                                 accepted = VerifyClientEntity(client, FALSE, FALSE);
1167                                                 
1168                                                 if not(accepted > 0) 
1169                                                 {
1170                                                         print("playerdemo: write: ", GetClientErrorString(accepted, argv(2)), ".\n"); 
1171                                                         return;
1172                                                 }
1173                                                 
1174                                                 self = client;
1175                                                 playerdemo_open_write(argv(next_token));
1176                                                 return;
1177                                         }
1178                                         
1179                                         case "auto_read_and_write":
1180                                         {
1181                                                 n = GetFilteredNumber(argv(3));
1182                                                 cvar_set("bot_number", ftos(n));
1183                                                 
1184                                                 localcmd("wait; wait; wait\n");
1185                                                 for(i = 0; i < n; ++i) { localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", argv(2), ftos(i+1), "\n"); }
1186                                                 
1187                                                 localcmd("sv_cmd playerdemo write 1 ", ftos(n+1), "\n");
1188                                                 return;
1189                                         }
1190                                         
1191                                         case "auto_read":
1192                                         {
1193                                                 n = GetFilteredNumber(argv(3));
1194                                                 cvar_set("bot_number", ftos(n));
1195                                                 
1196                                                 localcmd("wait; wait; wait\n");
1197                                                 for(i = 0; i < n; ++i) { localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", argv(2), ftos(i+1), "\n"); }
1198                                                 return;
1199                                         }
1200                                 }
1201                         }
1202                 }
1203                         
1204                 default:
1205                         print("Incorrect parameters for ^2playerdemo^7\n");
1206                 case CMD_REQUEST_USAGE:
1207                 {
1208                         print("\nUsage:^3 sv_cmd playerdemo command (entitynumber filename | entitynumber botnumber)\n");
1209                         print("  Full list of commands here: \"read, write, auto_read_and_write, auto_read.\"\n");
1210                         return;
1211                 }
1212         }
1213 }
1214
1215 void GameCommand_printstats(float request) 
1216 {
1217         switch(request)
1218         {
1219                 case CMD_REQUEST_COMMAND:
1220                 {
1221                         DumpStats(FALSE);
1222                         print("stats dumped.\n");
1223                         return;
1224                 }
1225                         
1226                 default:
1227                 case CMD_REQUEST_USAGE:
1228                 {
1229                         print("\nUsage:^3 sv_cmd printstats\n");
1230                         print("  No arguments required.\n");
1231                         return;
1232                 }
1233         }
1234 }
1235
1236 void GameCommand_radarmap(float request, float argc)
1237 {
1238         switch(request)
1239         {
1240                 case CMD_REQUEST_COMMAND:
1241                 {
1242                         if(RadarMap_Make(argc))
1243                                 return;
1244                 }
1245                         
1246                 default:
1247                         print("Incorrect parameters for ^2radarmap^7\n");
1248                 case CMD_REQUEST_USAGE:
1249                 {
1250                         print("\nUsage:^3 sv_cmd radarmap [--force] [--loop] [--quit] [--block | --trace | --sample | --lineblock] [--sharpen N] [--res W H] [--qual Q]\n");
1251                         print("  The quality factor Q is roughly proportional to the time taken.\n");
1252                         print("  trace supports no quality factor; its result should look like --block with infinite quality factor.\n");
1253                         print("See also: ^2make_mapinfo^7\n");
1254                         return;
1255                 }
1256         }
1257 }
1258
1259 void GameCommand_reducematchtime(float request) 
1260 {
1261         switch(request)
1262         {
1263                 case CMD_REQUEST_COMMAND:
1264                 {
1265                         changematchtime(autocvar_timelimit_decrement *-60, autocvar_timelimit_min * 60, autocvar_timelimit_max * 60);
1266                         return;
1267                 }
1268                         
1269                 default:
1270                 case CMD_REQUEST_USAGE:
1271                 {
1272                         print("\nUsage:^3 sv_cmd reducematchtime\n");
1273                         print("  No arguments required.\n");
1274                         print("See also: ^2extendmatchtime^7\n");
1275                         return;
1276                 }
1277         }
1278 }
1279
1280 void GameCommand_setbots(float request, float argc)
1281 {
1282         switch(request)
1283         {
1284                 case CMD_REQUEST_COMMAND:
1285                 {
1286                         if(argc >= 2)
1287                         {
1288                                 cvar_settemp("minplayers", "0");
1289                                 cvar_settemp("bot_number", argv(1));
1290                                 bot_fixcount();
1291                                 return;
1292                         }
1293                 }
1294                         
1295                 default:
1296                         print("Incorrect parameters for ^2setbots^7\n");
1297                 case CMD_REQUEST_USAGE:
1298                 {
1299                         print("\nUsage:^3 sv_cmd setbots botnumber\n");
1300                         print("  Where 'botnumber' is the amount of bots to set bot_number cvar to.\n");
1301                         print("See also: ^2bot_cmd^7\n");
1302                         return;
1303                 }
1304         }
1305 }
1306
1307 void GameCommand_shuffleteams(float request)
1308 {
1309         switch(request)
1310         {
1311                 case CMD_REQUEST_COMMAND:
1312                 {
1313                         if(teamplay)
1314                         {
1315                                 entity tmp_player;
1316                                 float i, x, z, t_teams, t_players, team_color;
1317
1318                                 // count the total amount of players and total amount of teams
1319                                 t_players = 0;
1320                                 t_teams = 0;
1321                                 FOR_EACH_PLAYER(tmp_player)
1322                                 {
1323                                         CheckAllowedTeams(tmp_player);
1324                                         
1325                                         if(c1 >= 0) t_teams = max(1, t_teams);
1326                                         if(c2 >= 0) t_teams = max(2, t_teams);
1327                                         if(c3 >= 0) t_teams = max(3, t_teams);
1328                                         if(c4 >= 0) t_teams = max(4, t_teams);
1329                                         
1330                                         ++t_players;
1331                                 }
1332                                 
1333                                 // build a list of the players in a random order
1334                                 FOR_EACH_PLAYER(tmp_player)
1335                                 {
1336                                         for(;;)
1337                                         {
1338                                                 i = bound(1, floor(random() * maxclients) + 1, maxclients);
1339                                                 
1340                                                 if(shuffleteams_players[i])
1341                                                 {
1342                                                         continue; // a player is already assigned to this slot
1343                                                 }
1344                                                 else
1345                                                 {
1346                                                         shuffleteams_players[i] = num_for_edict(tmp_player);
1347                                                         break;
1348                                                 }
1349                                         }
1350                                 }
1351
1352                                 // finally, from the list made earlier, re-join the players in different order. 
1353                                 for(i = 1; i <= t_teams; ++i)
1354                                 {
1355                                         // find out how many players to assign to this team
1356                                         x = (t_players / t_teams);
1357                                         x = ((i == 1) ? ceil(x) : floor(x));
1358                                         
1359                                         team_color = Team_NumberToTeam(i);
1360                                         
1361                                         // sort through the random list of players made earlier 
1362                                         for(z = 1; z <= maxclients; ++z)
1363                                         {                                                       
1364                                                 if not(shuffleteams_teams[i] >= x)
1365                                                 {
1366                                                         if not(shuffleteams_players[z])
1367                                                                 continue; // not a player, move on to next random slot
1368                                                                 
1369                                                         if(VerifyClientNumber(shuffleteams_players[z]))
1370                                                                 self = edict_num(shuffleteams_players[z]);
1371
1372                                                         if(self.team != team_color) 
1373                                                                 MoveToTeam(self, team_color, 6, 0);
1374
1375                                                         shuffleteams_players[z] = 0;
1376                                                         shuffleteams_teams[i] = shuffleteams_teams[i] + 1;
1377                                                 }
1378                                                 else
1379                                                 {
1380                                                         break; // move on to next team
1381                                                 }
1382                                         }
1383                                 }
1384                                 
1385                                 bprint("Successfully shuffled the players around randomly.\n");
1386                                 
1387                                 // clear the buffers now
1388                                 for (i=0; i<SHUFFLETEAMS_MAX_PLAYERS; ++i)
1389                                         shuffleteams_players[i] = 0;
1390                                 
1391                                 for (i=0; i<SHUFFLETEAMS_MAX_TEAMS; ++i)
1392                                         shuffleteams_teams[i] = 0;
1393                         }
1394                         else
1395                         {
1396                                 print("Can't shuffle teams when currently not playing a team game.\n");
1397                         }
1398                         
1399                         return;
1400                 }
1401                         
1402                 default:
1403                 case CMD_REQUEST_USAGE:
1404                 {
1405                         print("\nUsage:^3 sv_cmd shuffleteams\n");
1406                         print("  No arguments required.\n");
1407                         print("See also: ^2moveplayer, allspec^7\n");
1408                         return;
1409                 }
1410         }
1411 }
1412
1413 void GameCommand_stuffto(float request, float argc)
1414 {
1415         // This... is a fairly dangerous and powerful command... - It allows any arguments to be sent to a client via rcon.
1416         // Because of this, it is disabled by default and must be enabled by the server owner when doing compilation. That way,
1417         // we can be certain they understand the risks of it... So to enable, compile server with -DSTUFFTO_ENABLED argument.
1418         
1419         #ifdef STUFFTO_ENABLED
1420         switch(request)
1421         {
1422                 case CMD_REQUEST_COMMAND:
1423                 {
1424                         if(argv(2))
1425                         {
1426                                 entity client = GetIndexedEntity(argc, 1);
1427                                 float accepted = VerifyClientEntity(client, TRUE, FALSE);
1428                                 
1429                                 if(accepted > 0)
1430                                 {
1431                                         stuffcmd(client, strcat("\n", argv(next_token), "\n"));
1432                                         print(strcat("Command: \"", argv(next_token), "\" sent to ", GetCallerName(client), " (", argv(1) ,").\n"));
1433                                 }
1434                                 else
1435                                         print("stuffto: ", GetClientErrorString(accepted, argv(1)), ".\n"); 
1436                                 
1437                                 return;
1438                         }
1439                 }
1440                         
1441                 default:
1442                         print("Incorrect parameters for ^2stuffto^7\n");
1443                 case CMD_REQUEST_USAGE:
1444                 {
1445                         print("\nUsage:^3 sv_cmd stuffto client \"command\"\n");
1446                         print("  'client' is the entity number or name of the player,\n");
1447                         print("  and 'command' is the command to be sent to that player.\n");
1448                         return;
1449                 }
1450         }
1451         #else
1452         if(request)
1453         {
1454                 print("stuffto command is not enabled on this server.\n");
1455                 return;
1456         }
1457         #endif
1458 }
1459
1460 void GameCommand_trace(float request, float argc)
1461 {
1462         switch(request)
1463         {
1464                 case CMD_REQUEST_COMMAND:
1465                 {
1466                         entity e;
1467                         vector org, delta, start, end, p, q, q0, pos, vv, dv;
1468                         float i, f, safe, unsafe, dq, dqf;
1469         
1470                         switch(argv(1))
1471                         {
1472                                 case "debug":
1473                                 {
1474                                         print("TEST CASE. If this returns the runaway loop counter error, possibly everything is oaky.\n");
1475                                         for(;;)
1476                                         {
1477                                                 org = world.mins;
1478                                                 delta = world.maxs - world.mins;
1479
1480                                                 start_x = org_x + random() * delta_x;
1481                                                 start_y = org_y + random() * delta_y;
1482                                                 start_z = org_z + random() * delta_z;
1483
1484                                                 end_x = org_x + random() * delta_x;
1485                                                 end_y = org_y + random() * delta_y;
1486                                                 end_z = org_z + random() * delta_z;
1487
1488                                                 start = stov(vtos(start));
1489                                                 end = stov(vtos(end));
1490
1491                                                 tracebox(start, PL_MIN, PL_MAX, end, MOVE_NOMONSTERS, world);
1492                                                 if(!trace_startsolid)
1493                                                 {
1494                                                         p = trace_endpos;
1495                                                         tracebox(p, PL_MIN, PL_MAX, p, MOVE_NOMONSTERS, world);
1496                                                         if(trace_startsolid || trace_fraction == 1)
1497                                                         {
1498                                                                 rint(42); // do an engine breakpoint on VM_rint so you can get the trace that errnoeously returns startsolid
1499                                                                 tracebox(start, PL_MIN, PL_MAX, end, MOVE_NOMONSTERS, world);
1500
1501                                                                 if(trace_startsolid)
1502                                                                 {
1503                                                                         // how much do we need to back off?
1504                                                                         safe = 1;
1505                                                                         unsafe = 0;
1506                                                                         for(;;)
1507                                                                         {
1508                                                                                 pos = p * (1 - (safe + unsafe) * 0.5) + start * ((safe + unsafe) * 0.5);
1509                                                                                 tracebox(pos, PL_MIN, PL_MAX, pos, MOVE_NOMONSTERS, world);
1510                                                                                 if(trace_startsolid)
1511                                                                                 {
1512                                                                                         if((safe + unsafe) * 0.5 == unsafe)
1513                                                                                                 break;
1514                                                                                         unsafe = (safe + unsafe) * 0.5;
1515                                                                                 }
1516                                                                                 else
1517                                                                                 {
1518                                                                                         if((safe + unsafe) * 0.5 == safe)
1519                                                                                                 break;
1520                                                                                         safe = (safe + unsafe) * 0.5;
1521                                                                                 }
1522                                                                         }
1523
1524                                                                         print("safe distance to back off: ", ftos(safe * vlen(p - start)), "qu\n");
1525                                                                         print("unsafe distance to back off: ", ftos(unsafe * vlen(p - start)), "qu\n");
1526
1527                                                                         tracebox(p, PL_MIN + '0.1 0.1 0.1', PL_MAX - '0.1 0.1 0.1', p, MOVE_NOMONSTERS, world);
1528                                                                         if(trace_startsolid)
1529                                                                                 print("trace_endpos much in solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1530                                                                         else
1531                                                                                 print("trace_endpos just in solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1532                                                                         break;
1533                                                                 }
1534
1535                                                                 q0 = p;
1536                                                                 dq = 0;
1537                                                                 dqf = 1;
1538                                                                 for(;;)
1539                                                                 {
1540                                                                         q = p + normalize(end - p) * (dq + dqf);
1541                                                                         if(q == q0)
1542                                                                                 break;
1543                                                                         tracebox(p, PL_MIN, PL_MAX, q, MOVE_NOMONSTERS, world);
1544                                                                         if(trace_startsolid)
1545                                                                                 error("THIS ONE cannot happen");
1546                                                                         if(trace_fraction > 0)
1547                                                                                 dq += dqf * trace_fraction;
1548                                                                         dqf *= 0.5;
1549                                                                         q0 = q;
1550                                                                 }
1551                                                                 if(dq > 0)
1552                                                                 {
1553                                                                         print("trace_endpos still before solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1554                                                                         print("could go ", ftos(dq), " units further to ", vtos(q), "\n");
1555                                                                         break;
1556                                                                 }
1557                                                         }
1558                                                 }
1559                                         }
1560                                         return;
1561                                 }
1562                                         
1563                                 case "debug2":
1564                                 {
1565                                         e = nextent(world);
1566                                         tracebox(e.origin + '0 0 32', e.mins, e.maxs, e.origin + '0 0 -1024', MOVE_NORMAL, e);
1567                                         vv = trace_endpos;
1568                                         if(trace_fraction == 1)
1569                                         {
1570                                                 print("not above ground, aborting\n");
1571                                                 return;
1572                                         }
1573                                         f = 0;
1574                                         for(i = 0; i < 100000; ++i)
1575                                         {
1576                                                 dv = randomvec();
1577                                                 if(dv_z > 0)
1578                                                         dv = -1 * dv;
1579                                                 tracebox(vv, e.mins, e.maxs, vv + dv, MOVE_NORMAL, e);
1580                                                 if(trace_startsolid)
1581                                                         print("bug 1\n");
1582                                                 if(trace_fraction == 1)
1583                                                 if(dv_z < f)
1584                                                 {
1585                                                         print("bug 2: ", ftos(dv_x), " ", ftos(dv_y), " ", ftos(dv_z));
1586                                                         print(" (", ftos(asin(dv_z / vlen(dv)) * 180 / M_PI), " degrees)\n");
1587                                                         f = dv_z;
1588                                                 }
1589                                         }
1590                                         print("highest possible dist: ", ftos(f), "\n");
1591                                         return;
1592                                 }
1593                                 
1594                                 case "walk":
1595                                 {
1596                                         if(argc == 3)
1597                                         {
1598                                                 e = nextent(world);
1599                                                 if(tracewalk(e, stov(argv(1)), e.mins, e.maxs, stov(argv(2)), MOVE_NORMAL))
1600                                                         print("can walk\n");
1601                                                 else
1602                                                         print("cannot walk\n");
1603                                                 return;
1604                                         }
1605                                 }
1606                                 
1607                                 case "showline":
1608                                 {
1609                                         if(argc == 3)
1610                                         {
1611                                                 vv = stov(argv(1));
1612                                                 dv = stov(argv(2));
1613                                                 traceline(vv, dv, MOVE_NORMAL, world);
1614                                                 trailparticles(world, particleeffectnum("TR_NEXUIZPLASMA"), vv, trace_endpos);
1615                                                 trailparticles(world, particleeffectnum("TR_CRYLINKPLASMA"), trace_endpos, dv);
1616                                                 return;
1617                                         }
1618                                 }
1619                                 
1620                                 // no default case, just go straight to invalid
1621                         }
1622                 }
1623                         
1624                 default:
1625                         print("Incorrect parameters for ^2trace^7\n");
1626                 case CMD_REQUEST_USAGE:
1627                 {
1628                         print("\nUsage:^3 sv_cmd trace command (startpos endpos)\n");
1629                         print("  Full list of commands here: \"debug, debug2, walk, showline.\"\n");
1630                         print("See also: ^2bbox, gettaginfo^7\n");
1631                         return;
1632                 }
1633         }
1634 }
1635
1636 void GameCommand_unlockteams(float request)
1637 {
1638         switch(request)
1639         {
1640                 case CMD_REQUEST_COMMAND:
1641                 {
1642                         if(teamplay)
1643                         {
1644                                 lockteams = 0;
1645                                 bprint("^1The teams are now unlocked.\n");
1646                         }
1647                         else
1648                         {
1649                                 bprint("unlockteams command can only be used in a team-based gamemode.\n");
1650                         }
1651                         return;
1652                 }
1653                         
1654                 default:
1655                 case CMD_REQUEST_USAGE:
1656                 {
1657                         print("\nUsage:^3 sv_cmd unlockteams\n");
1658                         print("  No arguments required.\n");
1659                         print("See also: ^2lockteams^7\n");
1660                         return;
1661                 }
1662         }
1663 }
1664
1665 void GameCommand_warp(float request, float argc)
1666 {
1667         switch (request)
1668         {
1669                 case CMD_REQUEST_COMMAND:
1670                 {
1671                         if(autocvar_g_campaign)
1672                         {
1673                                 if(argc >= 2)
1674                                 {
1675                                         CampaignLevelWarp(stof(argv(1)));
1676                                         print("Successfully warped to campaign level ", stof(argv(1)), ".\n");
1677                                 }       
1678                                 else
1679                                 {
1680                                         CampaignLevelWarp(-1);
1681                                         print("Successfully warped to next campaign level.\n");
1682                                 }
1683                         }
1684                         else
1685                                 print("Not in campaign, can't level warp\n");
1686                         return;
1687                 }
1688                 
1689                 default:
1690                 case CMD_REQUEST_USAGE:
1691                 {
1692                         print("\nUsage:^3 sv_cmd warp [level]\n");
1693                         print("  'level' is the level to change campaign mode to.\n");
1694                         print("  if 'level' is not provided it will change to the next level.\n");
1695                         return;
1696                 }
1697         }
1698 }
1699
1700 /* use this when creating a new command, making sure to place it in alphabetical order... also,
1701 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
1702 void GameCommand_(float request)
1703 {
1704         switch(request)
1705         {
1706                 case CMD_REQUEST_COMMAND:
1707                 {
1708                         
1709                         return;
1710                 }
1711                         
1712                 default:
1713                 case CMD_REQUEST_USAGE:
1714                 {
1715                         print("\nUsage:^3 sv_cmd \n");
1716                         print("  No arguments required.\n");
1717                         return;
1718                 }
1719         }
1720 }
1721 */
1722
1723
1724 // ==================================
1725 //  Macro system for server commands
1726 // ==================================
1727
1728 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
1729 // Common commands have double indentation to separate them a bit.
1730 #define SERVER_COMMANDS(request,arguments,command) \
1731         SERVER_COMMAND("adminmsg", GameCommand_adminmsg(request, arguments), "Send an admin message to a client directly") \
1732         SERVER_COMMAND("allready", GameCommand_allready(request), "Restart the server and reset the players") \
1733         SERVER_COMMAND("allspec", GameCommand_allspec(request, arguments), "Force all players to spectate") \
1734         SERVER_COMMAND("anticheat", GameCommand_anticheat(request, arguments), "Create an anticheat report for a client") \
1735         SERVER_COMMAND("animbench", GameCommand_animbench(request, arguments), "Benchmark model animation (LAGS)") \
1736         SERVER_COMMAND("bbox", GameCommand_bbox(request), "Print detailed information about world size") \
1737         SERVER_COMMAND("bot_cmd", GameCommand_bot_cmd(request, arguments, command), "Control and send commands to bots") \
1738         SERVER_COMMAND("cointoss", GameCommand_cointoss(request, arguments), "Flip a virtual coin and give random result") \
1739         SERVER_COMMAND("database", GameCommand_database(request, arguments), "Extra controls of the serverprogs database") \
1740         SERVER_COMMAND("defer_clear", GameCommand_defer_clear(request, arguments), "Clear all queued defer commands for a specific client") \
1741         SERVER_COMMAND("defer_clear_all", GameCommand_defer_clear_all(request), "Clear all queued defer commands for all clients") \
1742         SERVER_COMMAND("delrec", GameCommand_delrec(request, arguments), "Delete race time record for a map") \
1743         SERVER_COMMAND("effectindexdump", GameCommand_effectindexdump(request), "Dump list of effects from code and effectinfo.txt") \
1744         SERVER_COMMAND("extendmatchtime", GameCommand_extendmatchtime(request), "Increase the timelimit value incrementally") \
1745         SERVER_COMMAND("find", GameCommand_find(request, arguments), "Search through entities for matching classname") \
1746         SERVER_COMMAND("gametype", GameCommand_gametype(request, arguments), "Simple command to change the active gametype") \
1747         SERVER_COMMAND("gettaginfo", GameCommand_gettaginfo(request, arguments), "Get specific information about a weapon model") \
1748         SERVER_COMMAND("gotomap", GameCommand_gotomap(request, arguments), "Simple command to switch to another map") \
1749         SERVER_COMMAND("lockteams", GameCommand_lockteams(request), "Disable the ability for players to switch or enter teams") \
1750         SERVER_COMMAND("make_mapinfo", GameCommand_make_mapinfo(request), "Automatically rebuild mapinfo files") \
1751         SERVER_COMMAND("moveplayer", GameCommand_moveplayer(request, arguments), "Change the team/status of a player") \
1752         SERVER_COMMAND("nospectators", GameCommand_nospectators(request), "Automatically remove spectators from a match") \
1753         SERVER_COMMAND("playerdemo", GameCommand_playerdemo(request, arguments), "Control the ability to save demos of players") \
1754         SERVER_COMMAND("printstats", GameCommand_printstats(request), "Dump eventlog player stats and other score information") \
1755         SERVER_COMMAND("radarmap", GameCommand_radarmap(request, arguments), "Generate a radar image of the map") \
1756         SERVER_COMMAND("reducematchtime", GameCommand_reducematchtime(request), "Decrease the timelimit value incrementally") \
1757         SERVER_COMMAND("setbots", GameCommand_setbots(request, arguments), "Adjust how many bots are in the match") \
1758         SERVER_COMMAND("shuffleteams", GameCommand_shuffleteams(request), "Randomly move players to different teams") \
1759         SERVER_COMMAND("stuffto", GameCommand_stuffto(request, arguments), "Send a command to be executed on a client") \
1760         SERVER_COMMAND("trace", GameCommand_trace(request, arguments), "Various debugging tools with tracing") \
1761         SERVER_COMMAND("unlockteams", GameCommand_unlockteams(request), "Enable the ability for players to switch or enter teams") \
1762         SERVER_COMMAND("warp", GameCommand_warp(request, arguments), "Choose different level in campaign") \
1763         /* nothing */
1764
1765 void GameCommand_macro_help()
1766 {
1767         #define SERVER_COMMAND(name,function,description) \
1768                 { print("  ^2", name, "^7: ", description, "\n"); }
1769                 
1770         SERVER_COMMANDS(0, 0, "")
1771         #undef SERVER_COMMAND
1772         
1773         return;
1774 }
1775
1776 float GameCommand_macro_command(float argc, string command)
1777 {
1778         #define SERVER_COMMAND(name,function,description) \
1779                 { if(name == strtolower(argv(0))) { function; return TRUE; } }
1780                 
1781         SERVER_COMMANDS(CMD_REQUEST_COMMAND, argc, command)
1782         #undef SERVER_COMMAND
1783         
1784         return FALSE;
1785 }
1786
1787 float GameCommand_macro_usage(float argc)
1788 {
1789         #define SERVER_COMMAND(name,function,description) \
1790                 { if(name == strtolower(argv(1))) { function; return TRUE; } }
1791                 
1792         SERVER_COMMANDS(CMD_REQUEST_USAGE, argc, "")
1793         #undef SERVER_COMMAND
1794         
1795         return FALSE;
1796 }
1797
1798 void GameCommand_macro_write_aliases(float fh)
1799 {
1800         #define SERVER_COMMAND(name,function,description) \
1801                 { CMD_Write_Alias("qc_cmd_sv", name, description); }
1802                 
1803         SERVER_COMMANDS(0, 0, "")
1804         #undef SERVER_COMMAND
1805         
1806         return;
1807 }
1808         
1809
1810 // =========================================
1811 //  Main Function Called By Engine (sv_cmd)
1812 // =========================================
1813 // If this function exists, game code handles gamecommand instead of the engine code.
1814
1815 void GameCommand(string command)
1816 {
1817         float argc = tokenize_console(command);
1818         
1819         // Guide for working with argc arguments by example:
1820         // argc:   1    - 2      - 3     - 4
1821         // argv:   0    - 1      - 2     - 3 
1822         // cmd     vote - master - login - password
1823
1824         if(strtolower(argv(0)) == "help") 
1825         {
1826                 if(argc == 1) 
1827                 {
1828                         print("\nServer console commands:\n");
1829                         GameCommand_macro_help();
1830                         
1831                         print("\nBanning commands:\n");
1832                         BanCommand_macro_help();
1833                         
1834                         print("\nCommon networked commands:\n");
1835                         CommonCommand_macro_help(world);
1836                         
1837                         print("\nGeneric commands shared by all programs:\n");
1838                         GenericCommand_macro_help();
1839                         
1840                         print("\nUsage:^3 sv_cmd COMMAND...^7, where possible commands are listed above.\n");
1841                         print("For help about a specific command, type sv_cmd help COMMAND\n");
1842                         
1843                         return;
1844                 } 
1845                 else if(BanCommand_macro_usage(argc)) // Instead of trying to call a command, we're going to see detailed information about it
1846                 {
1847                         return;
1848                 }
1849                 else if(CommonCommand_macro_usage(argc, world)) // same here, but for common commands instead
1850                 {
1851                         return;
1852                 }
1853                 else if(GenericCommand_macro_usage(argc)) // same here, but for generic commands instead
1854                 {
1855                         return;
1856                 }
1857                 else if(GameCommand_macro_usage(argc)) // finally try for normal commands too
1858                 {
1859                         return;
1860                 }
1861         } 
1862         else if(BanCommand(command)) 
1863         {
1864                 return; // handled by server/command/ipban.qc
1865         }
1866         else if(CommonCommand_macro_command(argc, world, command))
1867         {
1868                 return; // handled by server/command/common.qc
1869         }
1870         else if(GenericCommand(command)) 
1871         {
1872                 return; // handled by common/command/generic.qc
1873         }
1874         else if(GameCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
1875         {
1876                 return; // handled by one of the above GameCommand_* functions
1877         }
1878         
1879         // nothing above caught the command, must be invalid
1880         print(((command != "") ? strcat("Unknown server command \"", command, "\"") : "No command provided"), ". For a list of supported commands, try sv_cmd help.\n");
1881         
1882         return;
1883 }