AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY] HexTags [Tags/Chat Colors & Score Tags] (https://forums.alliedmods.net/showthread.php?t=303671)

Papero 12-16-2017 11:29

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



https://img.shields.io/github/downlo...le=flat-square https://img.shields.io/badge/License...le=flat-square https://img.shields.io/github/tag/He...le=flat-square https://img.shields.io/github/issues...le=flat-square


If you are having issues with the tags not beign enforced and changing on the round end make sure you have updated to the latest version of sourcemod and metamod

Remake of [CS:GO]Chat Colors (Custom Chat Colors).
Supports any game that is supported by chat-processor. It's only being tested in CS:GO.


Features:
Code:

  1. Set Clan-Tag (On the scoreboard) CSGO/CSS Only.

  2. Set Chat Colors.

  3. Set Chat Tags with colors.

  4. Set Name Colors.

  5. Available colors.

  6. Rainbow(& Random) colored chat.

  7. Allows users to select a tag, choosing one from all the tags available to the client. See sm_tagslist command and sm_hextags_enable_tagslist cvar


Commands:
Code:

  1. /reloadtags --> Reloads the tags & colors.

  2. /toggletags --> Enable or disable the tags visibility.

  3. /getteam --> Returns the current team name.

  4. /tagslist --> Shows all the tags a player has access to.


ConVars:
Generated automatically in the cfg/sourcemod folder:
Code:

  1. sm_hextags_nogang ("") --> Text to use if user has no tag - needs hl_gangs

  2. sm_hextags_roundend (0)--> If 1 the tags will be reloaded even on round end - Suggested to be used with plugins like mostactive or rankme.

  3. sm_hextags_enable_tagslist (0) --> Enable the usage of the tagslist command. Still experimental.

  4. sm_hextags_timer_interval (5.0) --> How often should the user tags be checked if the match the config ones. Set to 0 to disable.

  5. sm_hextags_loglevel (0) --> Set the plugin loglevel: 0: No logs, 1: Info, 2: Debug.


Supported plugins:
Code:

  1. Warden/Deputy: https://forums.alliedmods.net/showthread.php?p=1476638 & https://forums.alliedmods.net/showthread.php?t=283212

  2. RankMe: https://forums.alliedmods.net/showthread.php?p=2467665

  3. MostActive: https://forums.alliedmods.net/showthread.php?p=1751973


How to install



Configurations



Common Issues



Bugs and todos: https://img.shields.io/github/issues...10/HexTags.svg
Please check the wiki or the issues pages before reporting a new error!


Screenshots
https://steamuserimages-a.akamaihd.n...3A5FFBAD2C01D/ https://steamuserimages-a.akamaihd.n...331173C544FF0/

Sourcecode on GitHub!

Download

Updating from 1.x to 2.x
Spoiler


Natives & Forward
Spoiler


Thanks to: shanapu, lukas, for help with scripting & testing!

AceNetworks 12-16-2017 11:43

Re: HexTags
 
Awesome! Thank you for remake chat colors!:)

Cruze 12-16-2017 11:59

Re: HexTags
 
damn! nice!!!

Papero 12-17-2017 11:25

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Update 1.11:
Code:

1. Added {time} param. This will be replaced with time, format: HH:MM
2. Incrased ChatTag from 64 to 128 chars.


Quote:

Originally Posted by AceNetworks (Post 2566630)
Awesome! Thank you for remake chat colors!:)

Quote:

Originally Posted by Cruze (Post 2566634)
damn! nice!!!

Thanks both!

PinHeaDi 12-18-2017 05:59

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
PHP Code:

#include <sourcemod>
#include <vip_core>
#include <hextags>

public void OnClientPutInServer(int iClient)
{
    if (
VIP_IsClientVIP(iClient) && VIP_GetClientVIPGroup(iClient"VIP"15))
    {
        
HexTags_SetClientTag(iClientChatTag"[{purble}Test{grey}]");
        
HexTags_SetClientTag(iClientChatColor"{yellow}");
        
HexTags_SetClientTag(iClientScoreTag"Test");
    }


Or did I got it wrong? Its not working that way. The plugin itself works more than perfectly, very nice job there.

Papero 12-18-2017 06:27

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by PinHeaDi (Post 2566844)
PHP Code:

#include <sourcemod>
#include <vip_core>
#include <hextags>

public void OnClientPutInServer(int iClient)
{
    if (
VIP_IsClientVIP(iClient) && VIP_GetClientVIPGroup(iClient"VIP"15))
    {
        
HexTags_SetClientTag(iClientChatTag"[{purble}Test{grey}]");
        
HexTags_SetClientTag(iClientChatColor"{yellow}");
        
HexTags_SetClientTag(iClientScoreTag"Test");
    }


Or did I got it wrong? Its not working that way. The plugin itself works more than perfectly, very nice job there.

You should set the tags on the "HexTags_OnTagsUpdated(int client)"

Btw now that forwards it's bugged since it's called before the tags get actually updated. As soon as I'm home I'll fix it.
Fixed with: 8c2bcb33

PinHeaDi 12-18-2017 09:36

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
I keep getting " error 004: function "HexTags_OnTagsUpdated" is not implemented".

Papero 12-18-2017 10:34

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by PinHeaDi (Post 2566865)
I keep getting " error 004: function "HexTags_OnTagsUpdated" is not implemented".

PHP Code:

#include <sourcemod>
#include <vip_core>
#include <hextags>

public void HexTags_OnTagsUpdated(int iClient)
{
    if (
VIP_IsClientVIP(iClient) && VIP_GetClientVIPGroup(iClient"VIP"15))
    {
        
HexTags_SetClientTag(iClientChatTag"[{purble}Test{grey}]");
        
HexTags_SetClientTag(iClientChatColor"{yellow}");
        
HexTags_SetClientTag(iClientScoreTag"Test");
    }



Rale 12-18-2017 11:43

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
PHP Code:

L 12/18/2017 11:39:55: [SMException reportedInvalid time format or buffer too small
L 12
/18/2017 11:39:55: [SMBlaminghextags.smx
L 12
/18/2017 11:39:55: [SMCall stack trace:
L 12/18/2017 11:39:55: [SM]   [0FormatTime
L 12
/18/2017 11:39:55: [SM]   [1Line 148d:\my profile\documents\hextags\addons\sourcemod\scripting\hextags.sp::CP_OnChatMessage
L 12
/18/2017 11:39:55: [SM]   [3Call_Finish
L 12
/18/2017 11:39:55: [SM]   [4Line 302E:\Google Drive\Projects\Sourcemod\Public\Chat-Processor\scripting\chat-processor.sp::OnSayText2 

And plugin does not works :S

Papero 12-18-2017 16:30

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Rale (Post 2566890)
PHP Code:

L 12/18/2017 11:39:55: [SMException reportedInvalid time format or buffer too small
L 12
/18/2017 11:39:55: [SMBlaminghextags.smx
L 12
/18/2017 11:39:55: [SMCall stack trace:
L 12/18/2017 11:39:55: [SM]   [0FormatTime
L 12
/18/2017 11:39:55: [SM]   [1Line 148d:\my profile\documents\hextags\addons\sourcemod\scripting\hextags.sp::CP_OnChatMessage
L 12
/18/2017 11:39:55: [SM]   [3Call_Finish
L 12
/18/2017 11:39:55: [SM]   [4Line 302E:\Google Drive\Projects\Sourcemod\Public\Chat-Processor\scripting\chat-processor.sp::OnSayText2 

And plugin does not works :S

Post your hextags.cfg
This usually happens if your tags/colors are longer than 128 chars.

Rale 12-19-2017 11:12

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
There you go!

PHP Code:

"HexTags"
{
    
"z"
    
{
        
"ChatTag"    "{darkred}[Server Owner]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"o"
    
{
        
"ChatTag"    "{lightred}[Server Manager]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"b"
    
{
        
"ChatTag"    "{green}[ADMIN]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"q"
    
{
        
"ChatTag"    "{gold}[DIAMOND]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}
    
"p"
    
{
        
"ChatTag"    "{purple}[PREMIUM]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}
    
"r"
    
{
        
"ChatTag"    "{lightblue}[SUPPORTER]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}



Papero 12-19-2017 14:10

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Rale (Post 2567039)
There you go!

PHP Code:

"HexTags"
{
    
"z"
    
{
        
"ChatTag"    "{darkred}[Server Owner]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"o"
    
{
        
"ChatTag"    "{lightred}[Server Manager]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"b"
    
{
        
"ChatTag"    "{green}[ADMIN]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
    
}
    
"q"
    
{
        
"ChatTag"    "{gold}[DIAMOND]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}
    
"p"
    
{
        
"ChatTag"    "{purple}[PREMIUM]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}
    
"r"
    
{
        
"ChatTag"    "{lightblue}[SUPPORTER]" //The chat-tag
        
"ChatColor" "{default}" //The chat color
        
"NameColor" "{lime}"
    
}



Should be fixed with the last release.

paul181516 12-20-2017 20:33

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Doesnt work for me

https://i.imgur.com/Z9Vuq6r.png

Papero 12-21-2017 13:35

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by paul181516 (Post 2567377)

Orange color is not supported (for csgo).

Supported colors

mR_SMoking 12-24-2017 11:52

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

L 12/24/2017 - 16:45:52: [SM] Exception reported: Invalid time format or buffer too small
L 12/24/2017 - 16:45:52: [SM] Blaming: hextags.smx
L 12/24/2017 - 16:45:52: [SM] Call stack trace:
L 12/24/2017 - 16:45:52: [SM] [0] FormatTime
L 12/24/2017 - 16:45:52: [SM] [1] Line 148, hextags.sp::CP_OnChatMessage
L 12/24/2017 - 16:45:52: [SM] [3] Call_Finish
L 12/24/2017 - 16:45:52: [SM] [4] Line 302, E:\Google Drive\Projects\Sourcemod\Public\Chat-Processor\scripting\chat-processor.sp::OnSayText2
I get this in Logs

Papero 12-24-2017 12:04

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by mR_SMoking (Post 2567961)
I get this in Logs

What's your OS?

mR_SMoking 12-24-2017 12:05

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Papero (Post 2567965)
What's your OS?

Windows

Edward22 12-24-2017 13:33

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Could you implement a menu to select your tag if the user has 2 custom ones and the one form his admin group ?

like:

!ctag

>> Select Your Tag <<

1. Owner
2. GOD
3. No-scoper

>> ---------------- <<

That would be an awesome feature :O

Papero 12-24-2017 17:19

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by mR_SMoking (Post 2567966)
Windows

Mhh, that could be an OS problem since I'm not having any issues.

I'll look in to it.

Quote:

Originally Posted by Edward22 (Post 2567978)
Could you implement a menu to select your tag if the user has 2 custom ones and the one form his admin group ?

like:

!ctag

>> Select Your Tag <<

1. Owner
2. GOD
3. No-scoper

>> ---------------- <<

That would be an awesome feature :O

I will try to. But I cannot assure anything...



I'm in holiday till 5/6 January so don't aspect any update for now...

Rale 12-27-2017 11:59

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Any fix for windows soon?

Papero 12-27-2017 12:05

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Rale (Post 2568377)
Any fix for windows soon?


Try to recompile the plugin removing this line:
https://github.com/Hexer10/HexTags/b...extags.sp#L148

Rale 12-30-2017 20:51

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
PHP Code:

L 12/30/2017 20:46:36: [SMException reportedInvalid time format or buffer too small
L 12
/30/2017 20:46:36: [SMBlaminghextags.smx
L 12
/30/2017 20:46:36: [SMCall stack trace:
L 12/30/2017 20:46:36: [SM]   [0FormatTime
L 12
/30/2017 20:46:36: [SM]   [1Line 148d:\my profile\documents\hextags\addons\sourcemod\scripting\hextags.sp::CP_OnChatMessage
L 12
/30/2017 20:46:36: [SM]   [3Call_Finish
L 12
/30/2017 20:46:36: [SM]   [4Line 302E:\Google Drive\Projects\Sourcemod\Public\Chat-Processor\scripting\chat-processor.sp::OnSayText2 


Papero 12-31-2017 00:55

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Rale (Post 2568967)
PHP Code:

L 12/30/2017 20:46:36: [SMException reportedInvalid time format or buffer too small
L 12
/30/2017 20:46:36: [SMBlaminghextags.smx
L 12
/30/2017 20:46:36: [SMCall stack trace:
L 12/30/2017 20:46:36: [SM]   [0FormatTime
L 12
/30/2017 20:46:36: [SM]   [1Line 148d:\my profile\documents\hextags\addons\sourcemod\scripting\hextags.sp::CP_OnChatMessage
L 12
/30/2017 20:46:36: [SM]   [3Call_Finish
L 12
/30/2017 20:46:36: [SM]   [4Line 302E:\Google Drive\Projects\Sourcemod\Public\Chat-Processor\scripting\chat-processor.sp::OnSayText2 



It is impossible... Did you completely remove that line and compile the plugin properly?

Rale 12-31-2017 09:29

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Papero (Post 2568982)
It is impossible... Did you completely remove that line and compile the plugin properly?

Yep Im pretty sure that i done that properly. If you want compile it for me and send me to pm, i'll test it and send you results.

Papero 12-31-2017 14:40

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by Rale (Post 2569029)
Yep Im pretty sure that i done that properly. If you want compile it for me and send me to pm, i'll test it and send you results.


As I sad I'm not at home right now.
I will in 4/5 days.

shanapu 12-31-2017 15:10

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
4 Attachment(s)
Quote:

Originally Posted by Papero (Post 2568378)
Try to recompile the plugin removing this line:
https://github.com/Hexer10/HexTags/b...extags.sp#L148

Quote:

Originally Posted by Papero (Post 2568982)
It is impossible... Did you completely remove that line and compile the plugin properly?

Quote:

Originally Posted by Rale (Post 2569029)
Yep Im pretty sure that i done that properly. If you want compile it for me and send me to pm, i'll test it and send you results.

Quote:

Originally Posted by Papero (Post 2569061)
As I sad I'm not at home right now.
I will in 4/5 days.

PHP Code:

public Action CP_OnChatMessage(intauthorArrayList recipientschar[] flagstringchar[] namechar[] messageboolprocesscolorsboolremovecolors)
{
    
    
//Add colors & tags
    
char sNewName[MAXLENGTH_NAME];
    
char sNewMessage[MAXLENGTH_MESSAGE];
    
Format(sNewNameMAXLENGTH_NAME"%s%s%s{default}"sTags[author][ChatTag], sTags[author][NameColor], name); 
    
Format(sNewMessageMAXLENGTH_MESSAGE"%s%s"sTags[author][ChatColor], message);
    
    
//Update the params
    
char sTime[16];
//    FormatTime(sTime, sizeof(sTime), "%R");
    
ReplaceString(sNewNamesizeof(sNewName), "{time}"sTime);
    
ReplaceString(sNewMessagesizeof(sNewMessage), "{time}"sTime);
    
    
//Update the name & message
    
strcopy(nameMAXLENGTH_NAMEsNewName);
    
strcopy(messageMAXLENGTH_MESSAGEsNewMessage);
    
    
processcolors true;
    
removecolors false;
    
    return 
Plugin_Changed;


edit:

just tested the original file and the notime.
Original throw same error as above on Windows SM 1.9.0.6223
Edited version fix error but removed time.

edit2:
had a few tests:
PHP Code:

FormatTime(sTimesizeof(sTime), "%H:%M"); 

will fix the error.

http://www.cplusplus.com/reference/ctime/strftime/
All yellow marked specifiers had same error for me on windows.

added 'fixed time version' with "%H:%M"

Btw Great plugin! :bacon!::bacon!:

Rale 01-01-2018 06:25

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
@shanapu Gj mate, everything works fine now!

snoopy174 01-06-2018 14:13

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
you can add command support
different tags teams

Papero 01-07-2018 13:18

Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
 
Quote:

Originally Posted by shanapu (Post 2569068)
PHP Code:

public Action CP_OnChatMessage(intauthorArrayList recipientschar[] flagstringchar[] namechar[] messageboolprocesscolorsboolremovecolors)
{
    
    
//Add colors & tags
    
char sNewName[MAXLENGTH_NAME];
    
char sNewMessage[MAXLENGTH_MESSAGE];
    
Format(sNewNameMAXLENGTH_NAME"%s%s%s{default}"sTags[author][ChatTag], sTags[author][NameColor], name); 
    
Format(sNewMessageMAXLENGTH_MESSAGE"%s%s"sTags[author][ChatColor], message);
    
    
//Update the params
    
char sTime[16];
//    FormatTime(sTime, sizeof(sTime), "%R");
    
ReplaceString(sNewNamesizeof(sNewName), "{time}"sTime);
    
ReplaceString(sNewMessagesizeof(sNewMessage), "{time}"sTime);
    
    
//Update the name & message
    
strcopy(nameMAXLENGTH_NAMEsNewName);
    
strcopy(messageMAXLENGTH_MESSAGEsNewMessage);
    
    
processcolors true;
    
removecolors false;
    
    return 
Plugin_Changed;


edit:

just tested the original file and the notime.
Original throw same error as above on Windows SM 1.9.0.6223
Edited version fix error but removed time.

edit2:
had a few tests:
PHP Code:

FormatTime(sTimesizeof(sTime), "%H:%M"); 

will fix the error.

http://www.cplusplus.com/reference/ctime/strftime/
All yellow marked specifiers had same error for me on windows.

added 'fixed time version' with "%H:%M"

Btw Great plugin! :bacon!::bacon!:

Thanks! Now it's fixed in the last release!

Quote:

Originally Posted by snoopy174 (Post 2570214)
you can add command support
different tags teams

I will about the different tags teams soon. Added with https://github.com/Hexer10/HexTags/c...4993cc3631b5f7 . You'll need to compile the plugin by yourself, all the news are writteng in the cfg file.

Now sure about much time will require the command support and if is it really needed.

ayrton09_arg 01-14-2018 08:09

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
hello i have this problem idk why, [hextags.smx] No entries found in: "addons\sourcemod\configs\hextags.cfg"
os: windows

Papero 01-14-2018 08:26

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Quote:

Originally Posted by ayrton09_arg (Post 2571887)
hello i have this problem idk why, [hextags.smx] No entries found in: "addons\sourcemod\configs\hextags.cfg"
os: windows

That's only a warning which warn you that you have not configured the plugin so it's useless.

ayrton09_arg 01-14-2018 15:08

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Quote:

Originally Posted by Papero (Post 2571888)
That's only a warning which warn you that you have not configured the plugin so it's useless.

this is my config for testing

Code:

//
// HexTags Configuration file.
// by: Hexah
// https://github.com/Hexer10/HexTags
//
// Copyright (C) 2017 Mattia (Hexah|Hexer10|Papero)
//
// This file is part of the HexTags SourceMod Plugin.
//
// This program is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License, version 3.0, as published by the
// Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <http://www.gnu.org/licenses/>.
//
//
//
//        HexTags - Hexah
//        Configuration file.
//
//        All the avaible colors are: https://goo.gl/VgAHbK (colorvariables supported).
//        The priority is:
//        1. STEAM ID --> Can be STEAM_0 or STEAM_1 .
//        2. ADMIN GROUP --> It is selected only the first client group. Is needed a '@' before the group name.
//        3. ADMIN FLAGS --> They are selected starting from the last (ztsrqponmlkjihgfedcba). If a client has both 'a' and 'b' flags, the tags of 'b' will be selected.
//        4. (TOTAL)ONLINE TIME --> This need mostactive(https://forums.alliedmods.net/showthread.php?p=1751973) to work. Required time in seconds to get the tags. The '#' before the time is needed.
//        5. Default --> All players have these tags. This can be removed.
//       
//        Params (only works from chat tags/colors):
//        1. {time} --> This will be replaced with time, format: HH:MM
//
//        Every entry can be removed if for example you want only the 'ScoreTag'.
//
//  Examples:
//
//        "Default" //All player will have this tags
//        {
//                "ScoreTag" "[Default]" //The scoreboard-tag
//                "ChatTag"        "{darkblue}[Default]" //The chat-tag with the colors
//                "ChatColor" "{purple}" //The chat color
//                "NameColor" "{orchid}" //The name color
//        }
//        "@Admin"
//        {
//                "ScoreTag" "[Admin]" //The scoreboard-tag
//                "ChatTag"        "{red}[Admin]" //The chat-tag
//                "ChatColor" "{darkblue}" //The chat color
//                "NameColor" "{grey2}" //The name color
//        }
//        "a"
//        {
//                "ScoreTag" "[Res]" //The scoreboard-tag
//                "ChatTag"        "{red}[Res]" //The chat-tag
//                "ChatColor" "{blue}" //The chat color
//                "NameColor" "{grey}" //The name color
//        }
//        "#43200" //12h
//        {
//                "ScoreTag" "[Senior]" //The scoreboard-tag
//                "ChatTag"        "{red}[Senior]" //The chat-tag
//                "ChatColor" "{blue}" //The chat color
//                "NameColor" "{grey}" //The name color
//        }
//
//
// Start editing down this line!
"Default"
{
                "ChatTag"        "{purple}[Admin]"
                "ChatColor" "{lightgreen}"
                "NameColor" "{orchid}"
}
        "@Admin"
        {
                "ScoreTag" "[Admin]" //The scoreboard-tag
                "ChatTag"        "{red}[Admin]" //The chat-tag
                "ChatColor" "{darkblue}" //The chat color
                "NameColor" "{grey2}" //The name color
        }


Papero 01-14-2018 15:27

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
You need to leave the "HexTags" start es:
Code:

//..//
"HexTags"
{
        "Default"
      {
                "ChatTag"        "{purple}[Admin]"
                "ChatColor" "{lightgreen}"
                "NameColor" "{orchid}"
        }
        "@Admin"
        {
                "ScoreTag" "[Admin]" //The scoreboard-tag
                "ChatTag"        "{red}[Admin]" //The chat-tag
                "ChatColor" "{darkblue}" //The chat color
                "NameColor" "{grey2}" //The name color
        }
}


ayrton09_arg 01-14-2018 15:44

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Quote:

Originally Posted by Papero (Post 2571971)
You need to leave the "HexTags" start es:
Code:

//..//
"HexTags"
{
        "Default"
      {
                "ChatTag"        "{purple}[Admin]"
                "ChatColor" "{lightgreen}"
                "NameColor" "{orchid}"
        }
        "@Admin"
        {
                "ScoreTag" "[Admin]" //The scoreboard-tag
                "ChatTag"        "{red}[Admin]" //The chat-tag
                "ChatColor" "{darkblue}" //The chat color
                "NameColor" "{grey2}" //The name color
        }
}


lol thank you! nice plugin btw :)

zwetch 01-18-2018 04:51

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Color purple doesnt work :P

Papero 01-20-2018 13:51

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Quote:

Originally Posted by zwetch (Post 2572665)
Color purple doesnt work :P

Make sure that you have done no typos, it should work ok.

ANDREL0 01-21-2018 03:10

Re: [ANY]HexTags[Chat/Score Colors][07/01/18]
 
Hello, thanks for your contribution . Sorry, I need to know how to add a group of administrators, because I do not take the syntax with "@" + group name.

Please could you tell me what the complete format would be with an example?

thank you very much!

Papero 02-02-2018 08:47

Re: [ANY]HexTags[Chat/Score Colors][27/01/18]
 
Just forgot to update the thread:

New version: 1.19
Code:

1. Added Team(Name) tags support.
2. Added travis.
3. Fixed the forward.
4. Added cvar for versioning.


sime0282 02-02-2018 09:31

Re: [ANY]HexTags[Chat/Score Colors][27/01/18]
 
Can i add you on steam and you can help me?

I downloaded hextags plugin, and chat procesor, but dont work

snoopy174 02-02-2018 11:12

Re: [ANY]HexTags[Chat/Score Colors][27/01/18]
 
not working in the logs there is no error but the tag is not displayed
Quote:

"Terrorist"
{
"ScoreTag" "[Зек]" //The scoreboard-tag
"ChatTag" "{darkblue}[Заключенный]" //The chat-tag with the colors
"ChatColor" "{purple}" //The chat color
"NameColor" "{orchid}" //The name color
}


All times are GMT -4. The time now is 03:19.

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