Definitely the clan tag does not work in rust.. :/
I reinstalled the server does not work
BetterChat
Moved
Total Downloads: 26,200 - First Release: Apr 21, 2015 - Last Update: Jan 12, 2018
- 4.9898/5, 98 likes
-
not working tag with new update
-
Yep same here.. no clan tag
Others are working though. -
-
All the other groups I made show up. Just the clan tag isn't working.
-
Chat lagging.
Log:
[Warning] Calling 'OnUserChat' on 'BetterChat v4.1.13' took 297ms [GARBAGE COLLECT] -
(18:59:14) | [Oxide] 18:59 [Warning] Calling 'OnUserChat' on 'BetterChat v4.1.11' took 1964ms [GARBAGE COLLECT] beat ya?
-
Just curious but is there a way to use multiple replacement words for the filter so it cycles them? or is it limited to one word?
-
I skimmed over the last few days of messages to see if this was already posted, excuse me if I missed it. Lately, anytime i reload BetterChat it kicks all players off my server due to flood protection. I even turned flood protection off in the config, but still happens. oxide.reload BetterChat = everyone kicked.
-
-
Why is it all of a sudden clan tags don't show up with better chat? Logged on to the game today and now when chatting clan chats do not show, but they show with death notes and other plugin msgs...
-
-
That's true and I understand that, just wasn't sure why it had stopped working. If that's the case then I'll just wait for a fix =)
-
-
Last edited by a moderator: Jun 29, 2016
-
@LaserHydra
You are missing TitleHidden in you internal object Set function
Code:case "titlehidden": if (!Plugin.TryConvert(value, out Title.Hidden)) return Plugin.GetMsg("Invalid Type").Replace("{Message}", "Hidden must be 'true' or 'false' !"); return $"Hidden set to {Title.Hidden}";
Do you have idea of what happen? -
-
I cant seem to find out how to fix this. But every time I join I am regiven the "default" group. I remove it every time, but when I rejoin its given right back to me. Anyway to fix this? This is my config.
Code:[ { "GroupName": "owner", "Priority": 2, "Title": { "Hidden": false, "HideIfNotHighestPriority": false, "Size": 15, "Color": "#00EEEE", "Text": "{Owner}" }, "PlayerName": { "Size": 15, "Color": "yellow", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "#ff7f7f" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } }, { "GroupName": "donator", "Priority": 1, "Title": { "Hidden": false, "HideIfNotHighestPriority": true, "Size": 15, "Color": "#7D26CD", "Text": "[Donator]" }, "PlayerName": { "Size": 15, "Color": "orange", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "white" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } }, { "GroupName": "default", "Priority": 0, "Title": { "Hidden": false, "HideIfNotHighestPriority": true, "Size": 15, "Color": "#9EC326", "Text": "[Player]" }, "PlayerName": { "Size": 15, "Color": "#9EC326", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "white" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } } ]
-
You will always be given the default group but doing it this way it will show you the owner tag only
Code:[ { "GroupName": "owner", "Priority": 0, "Title": { "Hidden": false, "HideIfNotHighestPriority": true, "Size": 15, "Color": "#00EEEE", "Text": "{Owner}" }, "PlayerName": { "Size": 15, "Color": "yellow", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "#ff7f7f" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } }, { "GroupName": "donator", "Priority": 1, "Title": { "Hidden": false, "HideIfNotHighestPriority": true, "Size": 15, "Color": "#7D26CD", "Text": "[Donator]" }, "PlayerName": { "Size": 15, "Color": "orange", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "white" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } }, { "GroupName": "default", "Priority": 2, "Title": { "Hidden": false, "HideIfNotHighestPriority": true, "Size": 15, "Color": "#9EC326", "Text": "[Player]" }, "PlayerName": { "Size": 15, "Color": "#9EC326", "ClanTagFormat": "[{Clan}] {Name}" }, "Message": { "Size": 15, "Color": "white" }, "Formatting": { "Console": "{Title} {Name}: {Message}", "Chat": "{Title} {Name}: {Message}" } } ]
-
So I know why clan names were not showing up and its thanks to Resistance, "ClanTagFormat": "[{Clan}] {Name}" had gone after updating the plugin...