mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-27 18:43:50 +00:00
Initial commit
This commit is contained in:
parent
2211ed7650
commit
ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions
23
docs/base/scripts/autoexec/chatmenuHudClear.cs
Executable file
23
docs/base/scripts/autoexec/chatmenuHudClear.cs
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
//Clear VoiceBind Chatmenu at spawn
|
||||
|
||||
package chatmenuHudClear
|
||||
{
|
||||
|
||||
function ClientCmdDisplayHuds()
|
||||
{
|
||||
parent::ClientCmdDisplayHuds();
|
||||
cancelChatMenu();
|
||||
}
|
||||
|
||||
function clientCmdSetInventoryHudItem(%slot, %amount, %addItem)
|
||||
{
|
||||
parent::clientCmdSetInventoryHudItem(%slot, %amount, %addItem);
|
||||
cancelChatMenu();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
// Prevent package from being activated if it is already
|
||||
if (!isActivePackage(chatmenuHudClear))
|
||||
activatePackage(chatmenuHudClear);
|
||||
Loading…
Add table
Add a link
Reference in a new issue