mirror of
https://git.code.sf.net/p/quake/prozac-qfcc
synced 2025-04-04 08:52:02 +00:00
Whoops
This commit is contained in:
parent
ac339959f4
commit
ce7cb2fcb0
1 changed files with 45 additions and 0 deletions
45
cmds.qc
Normal file
45
cmds.qc
Normal file
|
@ -0,0 +1,45 @@
|
|||
#include "defs.qh"
|
||||
|
||||
#ifdef NO_USER_CMDS
|
||||
|
||||
void() AddCommands = { };
|
||||
void(entity client) AddCommandAliases = { };
|
||||
|
||||
#else
|
||||
|
||||
integer commands_added;
|
||||
|
||||
void() Cmd_Weapon_f;
|
||||
|
||||
void() AddCommands =
|
||||
{
|
||||
if (!commands_added)
|
||||
{
|
||||
SV_AddUserCommand ("weapon", Cmd_Weapon_f, TRUE);
|
||||
}
|
||||
|
||||
commands_added = TRUE;
|
||||
return;
|
||||
};
|
||||
|
||||
void(entity client) AddCommandAliases =
|
||||
{
|
||||
if (self.got_aliases_num == 4)
|
||||
{
|
||||
stuffcmd (client, "alias reload \"cmd weapon reload\"\n");
|
||||
}
|
||||
};
|
||||
|
||||
void() Cmd_Weapon_f =
|
||||
{
|
||||
if (Cmd_Argc() < 2)
|
||||
{
|
||||
// do something here
|
||||
}
|
||||
else if (Cmd_Argv(1) == "reload")
|
||||
{
|
||||
TeamFortress_ReloadCurrentWeapon();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue