View Single Post
Papero
Veteran Member
Join Date: Aug 2016
Location: Italy
Old 12-18-2017 , 06:27   Re: [ANY]HexTags[Chat/Score Colors][16/12/17]
Reply With Quote #6

Quote:
Originally Posted by PinHeaDi View Post
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
__________________
My Plugins
SPCode


Steam: hexer504
Telegram: Hexah
Discord: Hexah#6903

If you like my work you can donate here!

Last edited by Papero; 12-18-2017 at 07:47.
Papero is offline