feat(Core/Commands): Deserter command (BG/Instance) (#1786)
* feat(Core/Commands): Deserter command (BG/Instance) - Adding .deserter command - Subcommands ; * instance add * instance remove * bg add * bg remove Time is in seconds, example usage: .deserter instance add 3600 (One hour) .deserter bg add 3600 (One hour) * Update cs_deserter.cpp * Update cs_deserter.cpp another try * Update cs_deserter.cpp again * Update cs_deserter.cpp sick of this * Update cs_deserter.cpp * Update cs_deserter.cpp Remove some lines
This commit is contained in:
parent
eee8e965e7
commit
268fab03a9
4 changed files with 149 additions and 0 deletions
|
|
@ -34,6 +34,7 @@ void AddSC_cast_commandscript();
|
|||
void AddSC_character_commandscript();
|
||||
void AddSC_cheat_commandscript();
|
||||
void AddSC_debug_commandscript();
|
||||
void AddSC_deserter_commandscript();
|
||||
void AddSC_disable_commandscript();
|
||||
void AddSC_event_commandscript();
|
||||
void AddSC_gm_commandscript();
|
||||
|
|
@ -611,6 +612,7 @@ void AddCommandScripts()
|
|||
AddSC_character_commandscript();
|
||||
AddSC_cheat_commandscript();
|
||||
AddSC_debug_commandscript();
|
||||
AddSC_deserter_commandscript();
|
||||
AddSC_disable_commandscript();
|
||||
AddSC_event_commandscript();
|
||||
AddSC_gm_commandscript();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue