BetterChat

Moved

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

4.9898/5, 98 likes
  1. I am not good with code and I'm almost certain I'm being blonde. Take a look at it?
     

    Attached Files:

  2. Seems like you don't have the latest version of BetterChat. This should have been fixed a while ago.
     
  3. Just kidding wrong file -_-
    [DOUBLEPOST=1457327652][/DOUBLEPOST]
    Could you check your inbox please? I'm a strugglin' one!
     
  4. Thats the default config if you could upload the config you have changed will have a look at it also make sure you are running the latest script should be version 3.5.6 Better Chat for Rust | Oxide
     
  5. Here is the modified version. Sorry for the mistake!
     

    Attached Files:

  6. You have some errors with it will upload it when its fixed
     
  7. I love you.
     
  8. Here you go
     

    Attached Files:

  9. Thank you. It's late here and I've already restarted the server like 10 times and my community hates me now haha. I'll let you know if it works tomorrow.
     
  10. 5:50am here make sure you edit all files with notepad++ from now on as you had extra spaces in that config that was causing you problems
     
  11. You should not need to restart your server. You can just reload the plugin using following console command:
    oxide.reload BetterChat
     
  12. Hey LazerHydra,

    I've recently added your plugin to my server but it's messing up a little just for me, I can add people to groups and it works fine but since I have full '*' permissions on my server I have the title of every single group, is there a way of making it so I only have the one?
     
  13. Revoke the single permissions of the groups you don't want to have. Example:
    oxide.revoke user LaserHydra betterchat.moderator
     
  14. In the betterchat config delete the "Title": "[Player]", for each group you dont want to show a title so even know the group has the permission no title will show even if in that group
     
  15. So to start off with what I'm attempting to do. I have started a server and now am trying to make ranks the ranks are as follow along with hex color codes I copied out of my brainstorm text file.
    Code:
    0 player #FFC0CB
    1 Silver #C0C0C0
    2 Gold #FFD700
    3 Platnium #E5E4E2
    4 Moderator #00FFFF
    5 Administrator #008080
    6 Owner #DC143CStaff #FF7F50
    Donators #32CD32
    players #778899
    What I did was I ran the command
    Code:
    group parent silver player
    [So my silver players can still have all regular player commands ]
    I then repeated the process
    group parent gold silver
    group parent platnium gold
    [I know i misspelled platinum but i don't want to change it unless someone tells me how without having to recreate the group]
    group parent moderators platnium
    group parent admins moderators
    group parent owner admins
    But now i get this stupid tag error that i don't know how to change
    [​IMG]

    Any help is appreciated.
    Thanks Wulf
    @LaserHydra
    Below is my BetterChat.json
    Code:
    {
      "admin": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#FF7F50",
        "Permission": "admin",
        "Rank": 5,
        "TextColor": "white",
        "Title": "[Admin]",
        "TitleColor": "#008080"
      },
      "AntiSpam": {
        "Enabled": false,
        "MaxCharacters": 85
      },
      "gold": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#32CD32",
        "Permission": "gold",
        "Rank": 2,
        "TextColor": "white",
        "Title": "[Gold]",
        "TitleColor": "#FFD700"
      },
      "moderator": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#FF7F50",
        "Permission": "moderator",
        "Rank": 4,
        "TextColor": "white",
        "Title": "[Mod]",
        "TitleColor": "#00FFFF"
      },
      "Mute": {
        "Enabled": false
      },
      "owner": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#FF7F50",
        "Permission": "owner",
        "Rank": 6,
        "TextColor": "white",
        "Title": "[Owner]",
        "TitleColor": "#DC143C"
      },
      "platnium": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#32CD32",
        "Permission": "platinum",
        "Rank": 3,
        "TextColor": "white",
        "Title": "[Platinum]",
        "TitleColor": "#E5E4E2"
      },
      "player": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#DCFF66",
        "Permission": "player",
        "Rank": 0,
        "TextColor": "white",
        "Title": "[Player]",
        "TitleColor": "#C4FF00"
      },
      "silver": {
        "ConsoleFormatting": "{Title} {Name}: {Message}",
        "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
        "NameColor": "#32CD32",
        "Permission": "silver",
        "Rank": 1,
        "TextColor": "white",
        "Title": "[Silver]",
        "TitleColor": "#C0C0C0"
      },
      "WordFilter": {
        "Banned Words": [
          "fuck",
          "bitch",
          "faggot"
        ],
        "Custom Replacement": "Unicorn",
        "Enabled": false,
        "Replacement": "*",
        "Use Custom Replacement": false
      }
    }
     
    Last edited by a moderator: Mar 11, 2016
  16. Wulf

    Wulf Community Admin

    The issue is that the plugin you are using relies on permissions, so the groups will inherit all of those permissions. The plugin should be removing lower ranks, which is something @LaserHydra would need to add.
     
  17. I had added the possibillity for multiple ranks by request. Though in the rewrite I am working on, you can turn that off.
    [DOUBLEPOST=1457707803,1457674889][/DOUBLEPOST]Good News for everybody :p

    I am currently working on BetterChat 4.0.0
    It includes some stuff what was wished for a while.

    I won't spoiler you yet. Be surprised when its out :)
    It will be out in the next days.
     
  18. won't show Group Tags on Anyone, Won't Even Change Color on Players Names, Just Default. any help
     
  19. could you show me your configfile?
     
  20. EDIT: it was working perfectly before i added the other plugin but, even after removing both plugins and re installing this plugin, just seems to not show any tags, /mute works



    {
    "admin": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "white",
    "Permission": "admin",
    "Rank": 3,
    "TextColor": "white",
    "Title": "[Admin]",
    "TitleColor": "aqua"
    },
    "AntiSpam": {
    "Enabled": false,
    "MaxCharacters": 85
    },
    "loyal": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "white",
    "Permission": "loyal",
    "Rank": 1,
    "TextColor": "white",
    "Title": "[Loyal]",
    "TitleColor": "lime"
    },
    "moderator": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "#DCFF66",
    "Permission": "moderator",
    "Rank": 2,
    "TextColor": "white",
    "Title": "[Mod]",
    "TitleColor": "yellow"
    },
    "Mute": {
    "Enabled": true
    },
    "player": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "white",
    "Permission": "player",
    "Rank": 1,
    "TextColor": "white",
    "Title": "[Player]",
    "TitleColor": "#C4FF00"
    },
    "STAFF": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "white",
    "Permission": "STAFF",
    "Rank": 1,
    "TextColor": "white",
    "Title": "[STAFF]",
    "TitleColor": "Red"
    },
    "vip": {
    "ConsoleFormatting": "{Title} {Name}: {Message}",
    "Formatting": "{Title} {Name}<color={TextColor}>:</color> {Message}",
    "NameColor": "white",
    "Permission": "vip",
    "Rank": 1,
    "TextColor": "white",
    "Title": "[V.I.P]",
    "TitleColor": "Purple"
    },
    "WordFilter": {
    "Banned Words": [
    "fuck",
    "bitch",
    "faggot"
    ],
    "Custom Replacement": "Unicorn",
    "CustomReplacement": "Unicorn",
    "Enabled": false,
    "FilterList": [
    "fuck",
    "bitch",
    "faggot"
    ],
    "Replacement": "*",
    "Use Custom Replacement": false,
    "UseCustomReplacement": false
    }
    }
     
    Last edited by a moderator: Mar 11, 2016