BetterChat

Moved

Total Downloads: 26,200 - First Release: Apr 21, 2015 - Last Update: Jan 12, 2018

4.9898/5, 98 likes
  1. Definitely the clan tag does not work in rust.. :/
    I reinstalled the server does not work
     
  2. not working tag with new update
     
  3. Yep same here.. no clan tag :D

    Others are working though.
     
  4. As it called works?
     
  5. All the other groups I made show up. Just the clan tag isn't working.
     
  6. Chat lagging.
    Log:
    [Warning] Calling 'OnUserChat' on 'BetterChat v4.1.13' took 297ms [GARBAGE COLLECT]
     
  7. (18:59:14) | [Oxide] 18:59 [Warning] Calling 'OnUserChat' on 'BetterChat v4.1.11' took 1964ms [GARBAGE COLLECT] beat ya?
     
  8. 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?
     
  9. 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.
     
  10. Delete the config then reload the plugin but have never seen this happen before so check all log files for error and warning logs
     
  11. 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...
     
  12. Remember this game is still in Alpha and with so many updates things will break
     
  13. 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 =)
     
  14. I must be honest, I doubt its caused by the game. When I tested it before releasing the last version, it worked fine. I gotta find out whats wrong.
     
  15. It could be a number of things, but I did not want to put your plugin down you have worked too hard for that
     
    Last edited by a moderator: Jun 29, 2016
  16. @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}";
    
    + from last update, when i reload plugin, server just freeze, without any reason (no error in log)

    Do you have idea of what happen?
     
  17. Propably the freeze / performance leak caused by massive player files.
     
  18. 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}"
        }
      }
    ]
     
  19. 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}"
        }
      }
    ]
    Try like this
     
  20. So I know why clan names were not showing up and its thanks to Resistance, "ClanTagFormat": "[{Clan}] {Name}" had gone after updating the plugin...