cg_noVoiceChats 0|1
cg_noVoiceText 0|1
cg_TeamChatsOnly 0|1
there’s others but err cba looking :o
For the other thing, maybe
b_numPopups Sets the number of ‘popups’ on the HUD, (-1 to n; where -1=default, 0=none, n=number of popups). [ETPRO]
cg_drawSmallPopupIcons Show smaller popup messages (e.g. Death messages) [ET 1.02]
might find this ET commands & cvars list useful, though it isnt nearly finished.
for the chat thing mebbie you’d find this useful? TBH i havent checked it properly in ET yet, keep forgetting :o
Anti-Spam Toggle
This script is orientated towards those who find a little too much voice chat spam going over the airwaves. The first press enables all vchats, the second press allows only vchats from teammates, while the third press silences everybody. Pressing the key again cycles back to the start and hence allows all vsay’s again.
// ANTI-SPAM TOGGLE
// ----------------
// by Fearle$$/DG
//
set spamoff “set cg_noVoiceChats 1;set cg_noVoiceText 1;set cg_TeamChatsOnly 1;echo ^5Spam ^1OFF;set spamtogg vstr spamon”
set spamon “set cg_noVoiceChats 0;set cg_noVoiceText 0;set cg_TeamChatsOnly 0;echo ^5Spam ^2ON;set spamtogg vstr spamonv”
set spamonv “set cg_noVoiceChats 0;set cg_noVoiceText 0;set cg_TeamChatsOnly 1;echo ^5Spam ^2ON ^3(^7team only^3);set spamtogg vstr spamoff”
set spamtogg “vstr spamon”
bind KEY “vstr spamtogg”
vstr spamon // Defaults all spam ON at startup