Хостинг серверов Minecraft playvds.com
  1. Вы находитесь в русском сообществе Bukkit. Мы - администраторы серверов Minecraft, разрабатываем собственные плагины и переводим на русский язык плагины наших собратьев из других стран.
    Скрыть объявление

Помогите Помогите с Chatty

Тема в разделе "Помощь", создана пользователем MrKlips228, 17 май 2020.

  1. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    Решил поставить Chatty так как там и Авто-сообщение и чат. Но минус этого чата в том, что когда пишешь в глобальный чат (!Текст) то получается так
    [​IMG]
    Мне надо перед сообщением убрать этот бесячий знак. Вот код:​
    Код:
    # ******************************************************
    # * Chatty (version 2.15.1)
    #   Universal chat-system for Bukkit-server.
    #   Creator: MrBrikster.
    # * Optional dependencies:
    #   Vault, PlaceholderAPI, NameTagEdit.
    # ******************************************************
    
    # * General settings section.
    # Common settings and small features.
    general:
      # Plugin localization.
      # Possible values:
      # en - English.
      # ru - Russian.
      # de - German.
      locale: ru
    
      # Chat listener priority.
      # Possible values:
      # lowest, low, normal, high, highest.
      priority: highest
    
      # Chat logging in "Chatty/logs".
      log: true
    
      # Completely cancels chat events,
      # if it cancels by moderation method
      # (instead of clearing recipients).
      completely-cancel: false
    
      # Storage player data mode.
      # true - for online-mode servers and under BungeeCord.
      # false - for offline-mode servers.
      uuid: false
    
      # Spy-mode.
      # Permission:
      # chatty.spy.<chat>
      # or chatty.spy.
      #
      # Permission for /spy:
      # chatty.command.spy
      spy:
        # On/off spy-mode.
        enable: true
        # Spy-mode message format.
        format: '&6[Spy] &r{format}'
        # PM spy-mode message format.
        # Permission: chatty.spy
        # or chatty.spy.pm
        pm-format: '&6[Spy] &7{sender} &6-> &7{recipient}: &f{message}'
    
    # * Commands.
    commands:
      prefix:
        # Enables "/prefix command.
        # Permission: chatty.command.prefix
        enable: true
        # Automatically adds a string after prefix.
        after-prefix: ' '
        # Auto-applying in NametagEdit.
        # (Requires NameTagEdit plugin).
        auto-nte: false
    
      suffix:
        # Enables "/suffix command.
        # Permission: chatty.command.suffix
        enable: true
        # Automatically adds a string before suffix.
        before-suffix: ' '
        # Auto-applying in NametagEdit.
        # (Requires NameTagEdit plugin).
        auto-nte: false
    
      msg:
        # Enables "/msg" command.
        # Permission: chatty.command.msg
        enable: true
        # Aliases for "/msg" command.
        aliases: ['message', 'pm', 'm', 'w']
        allow-console: false
    
      reply:
        # Enables "/reply" command.
        # Permission: chatty.command.reply
        enable: true
        # Aliases for "/reply" command.
        aliases: ['r']
        allow-console: false
    
      ignore:
        # Enables "/ignore" command.
        # Permission: chatty.command.ignore
        enable: true
        # Aliases for "/ignore" command.
        aliases: []
    
    # * Chats.
    # On the server there can be different chats with different settings,
    # whether it's donate-chat, admin-chat, or the usual local and global.
    #
    # Permissions:
    # chatty.chat.<chat> - permission for both writing and seeing messages.
    # chatty.chat.<chat>.write - permission for writing messages.
    # chatty.chat.<chat>.see - permission for seeing messages.
    #
    # Chat has the following options:
    # enable - on/off chat.
    # format - chat formatting string.
    # range - chat range. -1 to world-wide chat, -2 to server-wide chat.
    # symbol - the character from which the messages begin.
    # cooldown - message cooldown in seconds (bypass permission - chatty.cooldown.<chat>).
    # money - message price (depends on Vault).
    # permission - should this chat use permissions? Default value is true.
    chats:
      local:
        enable: true
        format: '&7[&6Л&7] {prefix} {player} {suffix} &8>> &7{message}'
        range: 100
        cooldown: 5
    
      global:
        enable: true
        format: '&7[&aГ&7] {prefix} &7{player}&r {suffix} &8>> &a{message}'
        range: -2
        symbol: '!'
        cooldown: 5
    # * JSON.
    # Formatting chat messages with JSON.
    # 1.7.10+.
    json:
      # 1.7.10+
      enable: false
    
      # Command that executes (by player) when you click on the player's name.
      # Supports PlaceholderAPI.
      # *** You should use "command" OR "suggest_command" OR "link" and cannot combine.
      #
      # You can use "{player}" variable here.
      command: /home
    
      # Command that suggests when you click on the player's name.
      # Supports PlaceholderAPI.
      # *** You should use "command" OR "suggest_command" OR "link" and cannot combine.
      #
      # You can use "{player}" variable here.
      suggest_command: '/msg {player} '
    
      # URL that opens when when you click on the player's name.
      # You must use "http://" or "https://" prefix, else you will crash Minecraft client :D
      #
      # Supports PlaceholderAPI.
      #
      # You can use "{player}" variable here.
      link: 'http://google.com'
    
      # Hover tooltip for the player's name.
      # Supports PlaceholderAPI.
      #
      # You can use "{player}" variable here.
      tooltip:
      - '&fPlayer &e{player}'
      - '&fThis tooltip supports'
      - '&fPlaceholderAPI placeholders!'
    
      # Swears hovers.
      #
      # Permission: chatty.swears.see
      swears:
        enable: true
        tooltip:
        - '&o{word}'
        - ''
        - '&eClick here to add word to whitelist.'
        suggest_command: /swears add {word}
    
      # Replacements for chat formats
      #
      # You can replace plain text with JSON-pieces
      # to make chat more interactive.
      #
      # Available properties:
      # text, tooltip, command, suggest_command, link.
      replacements:
        'Admin':
          # Original text.
          original: '&cAdmin'
          # Text to replace.
          #
          # Supports PlaceholderAPI.
          # You can use "{player}" variable here.
          #
          # You can remove this line, if you need original text.
          text: '&cAdmin'
    
          # Hover tooltip for the text.
          #
          # Supports PlaceholderAPI.
          #
          # You can use "{player}" variable here.
          tooltip:
          - '&cThis is admin.'
          - '&4&lBe afraid of him!'
          - ''
          - '&eClick here to see the server rules.'
    
          # *** You should use "command" OR "suggest_command" OR "link" and cannot combine.
          # Command that executes when you click on the text.
          #
          # Supports PlaceholderAPI.
          #
          # You can use "{player}" variable here.
          command: /rules
    
    # * Notifications.
    # There are three types of notifications:
    # via Chat, ActionBar (1.8+) and Advancements (1.12+).
    notifications:
      # Chat notifications..
      chat:
        # On/off chat notifications.
        enable: true
        # Notification lists.
        lists:
          # List "default".
          # Permission: chatty.notification.chat.default
          default:
            # Messages interval.
            time: 120
            # Messages prefix.
            prefix: '&8[&6&lHomeCraft&8] &8>> '
            # List of messages.
            messages:
            - '&fСейчас проходят огроменные &cскидки &fна донат. Успей купить &8[&bБог&8]. &fПокупка на сайте!'
            - '&fЧто-бы открыть меню &cсервера &fнапишите &8- &e&l/menu.'
            - '&fЧто-бы открыть &bдонат-меню &fсервера &fнапишите &8- &e&l/donate.'
            - '&fАдминистрация никогда не попросит у &cВас &fпароль от аккаунта!'
            - '&fПеред началом выживания ознакомьтесь с &aправилами &fнашего &cсервера &8- &ahttps://vk.com/topic-182797809_40918637'
            - '&fПокупай донат прямо сейчас на нашем &aсайте &8- &4&lwww.HomeCraft.Site'
            # Disable permission checking.
            # Delete the line, if you need this.
            permission: false
    
      # ActionBar notifications.
      # It's static notifications,
      # which changes the message with interval.
      #
      # Permission: chatty.notification.actionbar
      actionbar:
        # On/off ActionBar notifications.
        # Only 1.8+.
        enable: false
        # One message time.
        time: 1
        # Messages prefix.
        prefix: ''
        # List of messages.
        messages:
        # Disable permission checking.
        # Delete the line, if you need this.
        permission: false
    
      # Advancements (Achievements) notifications.
      advancements:
        # Advancements notifications.
        # Only 1.12+.
        enable: false
        # Notification lists.
        lists:
          # List "default".
          # Permission: chatty.notification.advancements.default
          default:
            # Messages interval.
            time: 25
            # List of messages.
            messages:
            - icon: 'minecraft:diamond'
              header: '&bMineSborka.ru'
              footer: '&fЛучший сайт по майнкрафт!'
            - icon: 'minecraft:gold_ingot'
              header: '&eMineSborka.ru'
              footer: '&fЛучший сайт по майнкрафт!'
            # Disable permission checking.
            # Delete the line, if you need this.
            permission: false
    
    # * Moderation.
    # Automatic chat moderation tools.
    moderation:
      caps:
        # On/off caps protection.
        # Bypass permission: chatty.moderation.caps
        enable: true
        # Minimal length of message to caps checking.
        length: 6
        # Minimal upper case procent for caps.
        procent: 80
        # On/off caps message blocking.
        # When false, message will be sent in lower case.
        block: true
      advertisement:
        # On/off advertisement protection.
        # Bypass permission: chatty.moderation.advertisement
        enable: true
        # Regular expressions for IP-addresses and sites.
        patterns:
          ip: '(?:\d{1,3}[.,-:;\/()=?}+ ]{1,4}){3}\d{1,3}'
          web: '[-a-zA-Z0-9@:%_\+.~#?&//=]{2,256}\.[a-z]{2,4}\b(\/[-a-zA-Z0-9@:%_\+~#?&//=]*)?'
        # On/off caps message blocking.
        # When false, advertisements will be replaced.
        block: true
        # Replacement for advertisement.
        replacement: '<ads>'
        # Whitelisted IP-addresses and sites.
        whitelist:
        - 'vk.com'
      swear:
        # On/off swear protection.
        # Bypass permission: chatty.moderation.swear
        enable: true
        # On/off caps message blocking.
        # When false, swears will be replaced.
        block: true
        # Replacement for swears.
        replacement: '<swear>'
        # Swear-list configuration: "Chatty/swears"
    
    # * Misc.
    # Change default Minecraft messages.
    misc:
      join:
        # Set '' to disable.
        message: ''
        # If player doesn't have permission, message won't send.
        #
        # Permission: chatty.misc.joinmessage
        permission: true
      quit:
        # Set '' to disable.
        message: ''
        # If player doesn't have permission, message won't send.
        #
        # Permission: chatty.misc.quitmessage
        permission: strue
      death:
        # Set '' to disable.
        message: ''
        # If player doesn't have permission, message won't send.
        #
        # Permission: chatty.misc.deathmessage
        permission: true
    
     
  2. Хостинг MineCraft
    <
  3. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    Ты 1 раз написал '!' ? Или 2?
    Ибо у меня всё нормально
     
  4. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    1
     
  5. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    попробуй поставить вместо '!' знак '*' и написать с помощью него. Если будет такая же история, скинешь список плагинов
     
  6. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    Кстати, откуда ты скачал плагин?
     
  7. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    Такая-же фигня.[​IMG]
     
  8. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    С сайта. По-моему minesborka. Кинь свой jar файл.
     
  9. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    Если есть плагин на спайготе - качай оттуда. Советую переустановить плагин на тот, что на спайготе
     
  10. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    Кинь позязя
     
  11. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
  12. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
  13. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
  14. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    хоспаде, что там ломать? Удалил старый чатти, папку и jar файл, установил новый, перезапустил
     
  15. Автор темы
    MrKlips228

    MrKlips228 Активный участник

    Баллы:
    61
    Т
    Так и сделал. Чат вообще сломался. Как из ванилки. Не робит. Хоя чатти сам робит
     
  16. MrMevell

    MrMevell Активный участник Пользователь

    Баллы:
    68
    Пермишинсы дай
     
  17. WooDyPlay

    WooDyPlay Участник Пользователь

    Баллы:
    33
    Имя в Minecraft:
    WooDyPlay
    Человек выше не шарит в майнкрафт
    Скачай ChatEx или дай айпи сервера, зайду, вместе разберемся
     
  18. TimeLord

    TimeLord Активный участник Пользователь

    Баллы:
    61
    Skype:
    sogurt53
    Имя в Minecraft:
    TimeLord
    Та же самая проблема - остаётся знак ! в сообщении, + префикс из PEX не появляется совсем. Ядро сервера Thermos. Пробовал сначала ChatManager настроить, там префикисы появляются, всё хорошо, вот только нельзя перейти из локального в глобальный, или наоборот, при чём даже оператору сервера пишет, что нет таких привилегий).
     

Поделиться этой страницей