Skip to content

Commit 601cf69

Browse files
committed
Add sm_hidetags command
#14
1 parent 627f71e commit 601cf69

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

addons/sourcemod/scripting/hextags.sp

+32-2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ bool bSteamWorks = true;
7070
bool bForceTag[MAXPLAYERS+1];
7171

7272
int iRank[MAXPLAYERS+1] = {-1, ...};
73+
bool bHideTag[MAXPLAYERS+1];
7374

7475
char sTags[MAXPLAYERS+1][eTags][128];
7576

@@ -122,6 +123,7 @@ public void OnPluginStart()
122123

123124
//Reg Cmds
124125
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");
125127
RegConsoleCmd("sm_getteam", Cmd_GetTeam, "Get current team name");
126128

127129
//Event hooks
@@ -224,7 +226,10 @@ public void OnLibraryRemoved(const char[] name)
224226
//Thanks to https://forums.alliedmods.net/showpost.php?p=2573907&postcount=6
225227
public Action OnClientCommandKeyValues(int client, KeyValues kv)
226228
{
227-
char sKey[64];
229+
if (bHideTag[client])
230+
return Plugin_Continue;
231+
232+
char sKey[64];
228233

229234
if (!bCSGO | !kv.GetSectionName(sKey, sizeof(sKey)))
230235
return Plugin_Continue;
@@ -260,6 +265,7 @@ public void OnClientDisconnect(int client)
260265
{
261266
ResetTags(client);
262267
iRank[client] = -1;
268+
bHideTag[client] = false;
263269
}
264270

265271
public void warden_OnWardenCreated(int client)
@@ -301,6 +307,22 @@ public Action Cmd_ReloadTags(int client, int args)
301307
return Plugin_Handled;
302308
}
303309

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+
304326
public Action Cmd_GetTeam(int client, int args)
305327
{
306328
char sTeam[32];
@@ -359,6 +381,11 @@ public Action RankMe_LoadTags(int client, int rank, any data)
359381

360382
public Action CP_OnChatMessage(int& author, ArrayList recipients, char[] flagstring, char[] name, char[] message, bool& processcolors, bool& removecolors)
361383
{
384+
if (bHideTag[author])
385+
{
386+
return Plugin_Continue;
387+
}
388+
362389
Action result = Plugin_Continue;
363390
//Call the forward
364391
Call_StartForward(fMessagePreProcess);
@@ -608,6 +635,9 @@ void LoadKv()
608635
}
609636
void LoadTags(int client, KeyValues kv = null)
610637
{
638+
if (bHideTag[client])
639+
return;
640+
611641
if (!IsValidClient(client, true, true))
612642
return;
613643

@@ -656,7 +686,7 @@ public Action Timer_ForceTag(Handle timer)
656686
if (!bCSGO)
657687
return;
658688

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])
660690
{
661691
char sTag[32];
662692
CS_GetClientClanTag(i, sTag, sizeof(sTag));

0 commit comments

Comments
 (0)