@@ -70,6 +70,7 @@ bool bSteamWorks = true;
70
70
bool bForceTag [MAXPLAYERS +1 ];
71
71
72
72
int iRank [MAXPLAYERS +1 ] = {- 1 , ...};
73
+ bool bHideTag [MAXPLAYERS +1 ];
73
74
74
75
char sTags [MAXPLAYERS +1 ][eTags ][128 ];
75
76
@@ -122,6 +123,7 @@ public void OnPluginStart()
122
123
123
124
//Reg Cmds
124
125
RegAdminCmd (" sm_reloadtags" , Cmd_ReloadTags , ADMFLAG_GENERIC , " Reload HexTags plugin config" );
126
+ RegAdminCmd (" sm_toggletags" , Cmd_ToggleTags , ADMFLAG_GENERIC , " Toggle the visibility of your tags" );
125
127
RegConsoleCmd (" sm_getteam" , Cmd_GetTeam , " Get current team name" );
126
128
127
129
//Event hooks
@@ -224,7 +226,10 @@ public void OnLibraryRemoved(const char[] name)
224
226
//Thanks to https://forums.alliedmods.net/showpost.php?p=2573907&postcount=6
225
227
public Action OnClientCommandKeyValues (int client , KeyValues kv )
226
228
{
227
- char sKey [64 ];
229
+ if (bHideTag [client ])
230
+ return Plugin_Continue ;
231
+
232
+ char sKey [64 ];
228
233
229
234
if (! bCSGO | ! kv .GetSectionName (sKey , sizeof (sKey )))
230
235
return Plugin_Continue ;
@@ -260,6 +265,7 @@ public void OnClientDisconnect(int client)
260
265
{
261
266
ResetTags (client );
262
267
iRank [client ] = - 1 ;
268
+ bHideTag [client ] = false ;
263
269
}
264
270
265
271
public void warden_OnWardenCreated (int client )
@@ -301,6 +307,22 @@ public Action Cmd_ReloadTags(int client, int args)
301
307
return Plugin_Handled ;
302
308
}
303
309
310
+ public Action Cmd_ToggleTags (int client , int args )
311
+ {
312
+ if (bHideTag [client ])
313
+ {
314
+ bHideTag [client ] = false ;
315
+ LoadTags (client );
316
+ ReplyToCommand (client , " [SM] Your tags are visible again." );
317
+ }
318
+ else
319
+ {
320
+ bHideTag [client ] = true ;
321
+ CS_SetClientClanTag (client , " " );
322
+ ReplyToCommand (client , " [SM] Your tags are no longer visible." );
323
+ }
324
+ }
325
+
304
326
public Action Cmd_GetTeam (int client , int args )
305
327
{
306
328
char sTeam [32 ];
@@ -359,6 +381,11 @@ public Action RankMe_LoadTags(int client, int rank, any data)
359
381
360
382
public Action CP_OnChatMessage (int & author , ArrayList recipients , char [] flagstring , char [] name , char [] message , bool & processcolors , bool & removecolors )
361
383
{
384
+ if (bHideTag [author ])
385
+ {
386
+ return Plugin_Continue ;
387
+ }
388
+
362
389
Action result = Plugin_Continue ;
363
390
//Call the forward
364
391
Call_StartForward (fMessagePreProcess );
@@ -608,6 +635,9 @@ void LoadKv()
608
635
}
609
636
void LoadTags (int client , KeyValues kv = null )
610
637
{
638
+ if (bHideTag [client ])
639
+ return ;
640
+
611
641
if (! IsValidClient (client , true , true ))
612
642
return ;
613
643
@@ -656,7 +686,7 @@ public Action Timer_ForceTag(Handle timer)
656
686
if (! bCSGO )
657
687
return ;
658
688
659
- for (int i = 1 ; i <= MaxClients ; i ++ )if (IsClientInGame (i ) && bForceTag [i ] && sTags [i ][ScoreTag ][0 ] != ' \0 ' )
689
+ for (int i = 1 ; i <= MaxClients ; i ++ )if (IsClientInGame (i ) && bForceTag [i ] && sTags [i ][ScoreTag ][0 ] != ' \0 ' && ! bHideTag [ i ] )
660
690
{
661
691
char sTag [32 ];
662
692
CS_GetClientClanTag (i , sTag , sizeof (sTag ));
0 commit comments