Raised This Month: $ Target: $400
 0% 

[ANY] HexTags [Tags/Chat Colors & Score Tags]


Post New Thread Reply   
 
Thread Tools Display Modes
Papero
Veteran Member
Join Date: Aug 2016
Location: Italy
Old 10-27-2018 , 14:19   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #131

Quote:
Originally Posted by TrullSin View Post
Could you make it work with flags? And not only groups?
HexTags already supports the flags you type them as string, for example:
PHP Code:
"HexTags"
{
    
"z" //z flag
    
{
        
"Terrorist"
        
{
               ...
         }
        
"CT"
        
{
             ...
         }
    }

__________________
My Plugins
SPCode


Steam: hexer504
Telegram: Hexah
Discord: Hexah#6903

If you like my work you can donate here!

Last edited by Papero; 10-27-2018 at 14:19.
Papero is offline
root88
Senior Member
Join Date: May 2016
Old 10-30-2018 , 18:00   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][28/05/18]
Reply With Quote #132

Quote:
Originally Posted by Papero View Post
Update to the latest version(1.33+) and install this plugin:
PHP Code:
#include <sourcemod>
#include <hexstocks>
#include <hextags>
#include <colorvariables>


#define PLUGIN_AUTHOR         "Hexah"   
#define PLUGIN_VERSION        "1.0"

#pragma semicolon 1
#pragma newdecls required

public Plugin myinfo =
{
    
name "HexTags Addons: #Normalize",
    
author PLUGIN_AUTHOR,
    
description "Disable HexTags behavoir with messagest starting with '#'",
    
version PLUGIN_VERSION,
    
url "github.com/Hexer10"
};

public 
Action HexTags_OnMessageProcess(int clientchar[] nameint nameLenchar[] messageint messageLen)
{
    
char sMessageStripped[MAXLENGTH_NAME];
    
strcopy(sMessageStrippedsizeof(sMessageStripped), message);
    
CRemoveColors(sMessageStrippedsizeof(sMessageStripped));
    
TrimString(sMessageStripped);
    if (
sMessageStripped[0] == '#')
    {
        return 
Plugin_Stop;
    }
    return 
Plugin_Continue;

Thanks! Could you also add removing "#" from chat message?
__________________
root88 is offline
napster_10
Senior Member
Join Date: May 2016
Old 11-06-2018 , 09:24   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #133

i dont understand..how to do country tags?
napster_10 is offline
napster_10
Senior Member
Join Date: May 2016
Old 11-06-2018 , 15:11   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #134

hmm im gettin this errors?

Code:
L 11/06/2018 - 18:27:11: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:27:11: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:27:11: [SM] Call stack trace:
L 11/06/2018 - 18:27:11: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:27:11: [SM]   [1] Line 184, hextags.sp::OnClientPostAdminCheck
L 11/06/2018 - 18:27:11: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:27:11: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:27:11: [SM] Call stack trace:
L 11/06/2018 - 18:27:11: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:27:11: [SM]   [1] Line 145, hextags.sp::Frame_SetTag

L 11/06/2018 - 18:31:33: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:31:33: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:31:33: [SM] Call stack trace:
L 11/06/2018 - 18:31:33: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:31:33: [SM]   [1] Line 184, hextags.sp::OnClientPostAdminCheck
L 11/06/2018 - 18:31:33: [SM]   [3] NotifyPostAdminCheck
L 11/06/2018 - 18:31:33: [SM]   [4] Line 2559, .\sbpp_main.sp::CheckLoadAdmins
L 11/06/2018 - 18:31:33: [SM]   [5] Line 1831, .\sbpp_main.sp::AdminsDone
L 11/06/2018 - 18:31:37: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:31:37: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:31:37: [SM] Call stack trace:
L 11/06/2018 - 18:31:37: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:31:37: [SM]   [1] Line 145, hextags.sp::Frame_SetTag
L 11/06/2018 - 19:01:47: Error log file session closed.
my config looks like this:
Code:
"HexTags"
{

	"STEAM_0:1:123123123"
	{

	}

	"@Miniadmin"
	{
		"ScoreTag" "[Admin] " //The scoreboard-tag
		"ChatTag"	"{darkred}[Admin] " //The chat-tag
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{green}" //The name color
	}


	"@Superadmin"
	{
		"ScoreTag" "[Owner][Admin] " //The scoreboard-tag
		"ChatTag"	"{green}[Owner]{darkred}[Admin] " 
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{orchid}" //The name color
	}


}

Last edited by napster_10; 11-06-2018 at 15:12.
napster_10 is offline
Papero
Veteran Member
Join Date: Aug 2016
Location: Italy
Old 11-06-2018 , 15:55   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #135

Quote:
Originally Posted by napster_10 View Post
i dont understand..how to do country tags?
Just put
Code:
{country}
as tag.

Quote:
Originally Posted by napster_10 View Post
hmm im gettin this errors?

Code:
L 11/06/2018 - 18:27:11: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:27:11: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:27:11: [SM] Call stack trace:
L 11/06/2018 - 18:27:11: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:27:11: [SM]   [1] Line 184, hextags.sp::OnClientPostAdminCheck
L 11/06/2018 - 18:27:11: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:27:11: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:27:11: [SM] Call stack trace:
L 11/06/2018 - 18:27:11: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:27:11: [SM]   [1] Line 145, hextags.sp::Frame_SetTag

L 11/06/2018 - 18:31:33: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:31:33: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:31:33: [SM] Call stack trace:
L 11/06/2018 - 18:31:33: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:31:33: [SM]   [1] Line 184, hextags.sp::OnClientPostAdminCheck
L 11/06/2018 - 18:31:33: [SM]   [3] NotifyPostAdminCheck
L 11/06/2018 - 18:31:33: [SM]   [4] Line 2559, .\sbpp_main.sp::CheckLoadAdmins
L 11/06/2018 - 18:31:33: [SM]   [5] Line 1831, .\sbpp_main.sp::AdminsDone
L 11/06/2018 - 18:31:37: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/06/2018 - 18:31:37: [SM] Blaming: hextags.smx
L 11/06/2018 - 18:31:37: [SM] Call stack trace:
L 11/06/2018 - 18:31:37: [SM]   [0] CS_SetClientClanTag
L 11/06/2018 - 18:31:37: [SM]   [1] Line 145, hextags.sp::Frame_SetTag
L 11/06/2018 - 19:01:47: Error log file session closed.
my config looks like this:
Code:
"HexTags"
{

	"STEAM_0:1:123123123"
	{

	}

	"@Miniadmin"
	{
		"ScoreTag" "[Admin] " //The scoreboard-tag
		"ChatTag"	"{darkred}[Admin] " //The chat-tag
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{green}" //The name color
	}


	"@Superadmin"
	{
		"ScoreTag" "[Owner][Admin] " //The scoreboard-tag
		"ChatTag"	"{green}[Owner]{darkred}[Admin] " 
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{orchid}" //The name color
	}


}
Send your
Code:
sm version
reply, and make sure to have installed all the gamedata files properly.
__________________
My Plugins
SPCode


Steam: hexer504
Telegram: Hexah
Discord: Hexah#6903

If you like my work you can donate here!

Last edited by Papero; 11-06-2018 at 15:55.
Papero is offline
napster_10
Senior Member
Join Date: May 2016
Old 11-06-2018 , 16:23   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #136

i tried like this but thats not working^^

Code:
	"STEAM_0:1:1312412412"
	{
		"ScoreTag" "{country} " //The scoreboard-tag
		"ChatTag"	"{purple}{country}{darkred}[Admin] " 
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{orchid}" //The name color
	}
my sm version is 1.9.0.6252

but now i double checked my error logs and i knew i set all up properly and it was working fine without errors...the errors first started to occur after the last csgo update yesterday! i mean its still workin but the error log is filling up when admins join i guess. and i didnt change other than the csgo update since then.

Last edited by napster_10; 11-06-2018 at 16:25.
napster_10 is offline
Papero
Veteran Member
Join Date: Aug 2016
Location: Italy
Old 11-07-2018 , 07:34   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #137

Quote:
Originally Posted by napster_10 View Post
i tried like this but thats not working^^

Code:
	"STEAM_0:1:1312412412"
	{
		"ScoreTag" "{country} " //The scoreboard-tag
		"ChatTag"	"{purple}{country}{darkred}[Admin] " 
		"ChatColor" "{blue}" //The chat color
		"NameColor" "{orchid}" //The name color
	}
my sm version is 1.9.0.6252

but now i double checked my error logs and i knew i set all up properly and it was working fine without errors...the errors first started to occur after the last csgo update yesterday! i mean its still workin but the error log is filling up when admins join i guess. and i didnt change other than the csgo update since then.
To fix this we need to wait for a sourcemod update read more here: https://github.com/alliedmodders/sourcemod/pull/922
__________________
My Plugins
SPCode


Steam: hexer504
Telegram: Hexah
Discord: Hexah#6903

If you like my work you can donate here!

Last edited by Papero; 11-07-2018 at 07:50.
Papero is offline
napster_10
Senior Member
Join Date: May 2016
Old 11-07-2018 , 07:40   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #138

hi again...i have now updated to latest sourcemod stable build 6260 but still get these errors.....edit: ok so i guess that isnt implemented yet in the newest stable build so i have to wait for update release

Code:
L 11/07/2018 - 13:35:43: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/07/2018 - 13:35:43: [SM] Blaming: hextags.smx
L 11/07/2018 - 13:35:43: [SM] Call stack trace:
L 11/07/2018 - 13:35:43: [SM]   [0] CS_SetClientClanTag
L 11/07/2018 - 13:35:43: [SM]   [1] Line 184, hextags.sp::OnClientPostAdminCheck

L 11/07/2018 - 13:35:43: [SM] Exception reported: Failed to lookup SetClanTag signature.
L 11/07/2018 - 13:35:43: [SM] Blaming: hextags.smx
L 11/07/2018 - 13:35:43: [SM] Call stack trace:
L 11/07/2018 - 13:35:43: [SM]   [0] CS_SetClientClanTag
L 11/07/2018 - 13:35:43: [SM]   [1] Line 145, hextags.sp::Frame_SetTag
the OnClientPostAdminCheck i get on some other plugins aswell what i didnt have before the csgo update

Last edited by napster_10; 11-07-2018 at 07:50.
napster_10 is offline
gildevanaraujo
Senior Member
Join Date: Oct 2018
Location: Brazil
Old 11-07-2018 , 17:13   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #139

I have this problem in my plugin, can anyone tell me what it is?
The NameColor does not change!

Code:
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
KeyValues Error: LoadFromBuffer: missing { in file addons\sourcemod\configs\hextags.cfg
(*HexTags*), (*z*),
My ScoreTag and NameColor does not work.

My hextags.cfg

Code:
"HexTags"
{
	"z"
	{
		"ScoreTag" "[DONO]" //The scoreboard-tag
		"ChatTag"	"{darkred}[OWNER]" //The chat-tag
		"ChatColor" "{green}" //The chat color
		"NameColor" "{gold}" //The name color
	}
}


sm plugins list:

Code:
[SM] Listing 24 plugins:
  01 "Admin File Reader" (1.9.0.6260) by AlliedModders LLC
  02 "Admin Help" (1.9.0.6260) by AlliedModders LLC
  03 "Admin Menu" (1.9.0.6260) by AlliedModders LLC
  04 "Anti-Flood" (1.9.0.6260) by AlliedModders LLC
  05 "Basic Ban Commands" (1.9.0.6260) by AlliedModders LLC
  06 "Basic Chat" (1.9.0.6260) by AlliedModders LLC
  07 "Basic Comm Control" (1.9.0.6260) by AlliedModders LLC
  08 "Basic Commands" (1.9.0.6260) by AlliedModders LLC
  09 "Basic Info Triggers" (1.9.0.6260) by AlliedModders LLC
  10 "Basic Votes" (1.9.0.6260) by AlliedModders LLC
  11 "Chat-Processor" (2.1.5) by Keith Warren (Shaders Allen)
  12 "Client Preferences" (1.9.0.6260) by AlliedModders LLC
  13 "Chat Processor - Simple Chat Processor Wrapper" (1.0.0) by Keith Warren (Shaders Allen)
  14 "[Source 2013] Custom Chat Colors" (3.1.0 CP) by Dr. McKay, Fixed up by Keith Warren (Shaders Allen)
  15 "SM CS:GO Weapon Paints" (2.8.4 public version) by Franc1sco franug
  16 "Fun Commands" (1.9.0.6260) by AlliedModders LLC
  17 "Fun Votes" (1.9.0.6260) by AlliedModders LLC
  18 "hextags" (1.34) by Hexah
  19 "Nextmap" (1.9.0.6260) by AlliedModders LLC
  20 "Player Commands" (1.9.0.6260) by AlliedModders LLC
  21 "Reserved Slots" (1.9.0.6260) by AlliedModders LLC
  22 "ServerAdvertisements3" (3.1.3) by ESK0
  23 "SM CS:GO Franug Knives" (1.5) by Franc1sco franug
  24 "Sound Commands" (1.9.0.6260) by AlliedModders LLC
sm version:

Code:
 SourceMod Version Information:
    SourceMod Version: 1.9.0.6260
    SourcePawn Engine: 1.9.0.6260, jit-x86 (build 1.9.0.6260)
    SourcePawn API: v1 = 4, v2 = 12
    Compiled on: Oct 14 2018 05:28:24
    Built from: https://github.com/alliedmodders/sourcemod/commit/48f7e6bc
    Build ID: 6260:48f7e6bc
    http://www.sourcemod.net/
Image:
Attached Images
File Type: jpg Screenshot_1.jpg (13.8 KB, 138 views)

Last edited by gildevanaraujo; 11-07-2018 at 19:29.
gildevanaraujo is offline
napster_10
Senior Member
Join Date: May 2016
Old 11-07-2018 , 20:37   Re: [ANY] HexTags [Tags/Chat Colors & Score Tags][27/10/18]
Reply With Quote #140

after latest sourcemod version 6261 no errors anymore but country scoretag still not working for me

Code:
     "Default"
	{
		"ScoreTag" "{country}" 
		"ChatTag" "{yellow}[{country}] " 
	}
chattag is working but in scoreboard it just shows {country} playername
napster_10 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:45.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode