1. Вы находитесь в сообществе Rubukkit. Мы - администраторы серверов Minecraft, разрабатываем собственные плагины и переводим на различные языки плагины наших коллег из других стран.
    Скрыть объявление
Скрыть объявление
В преддверии глобального обновления, мы проводим исследования, которые помогут нам сделать опыт пользования форумом ещё удобнее. Помогите нам, примите участие!

Помогите Как запретить хорусы и пёрлы в привате?

Тема в разделе "Помощь", создана пользователем VasaPupkin1, 6 дек 2020.

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

    VasaPupkin1 Ньюби

    Баллы:
    1
  2. HauserGrim

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

    Баллы:
    96
    /rg flag регион enderpearl deny
    /rg flag region chorus-fruit-teleport deny
    Если на всех регионах, то пользуешься автофлагами, типа как в wgextender
    Больше тебе вряд ли напишут.
     
  3. Автор темы
    VasaPupkin1

    VasaPupkin1 Ньюби

    Баллы:
    1
    Я выставил все эти значения, но изменений не было(плагин не перезанружал) [​IMG]
     
  4. HauserGrim

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

    Баллы:
    96
    Мб из-за опки/*?
     
  5. Автор темы
    VasaPupkin1

    VasaPupkin1 Ньюби

    Баллы:
    1
    заходил с чистого аккаунта, возможно у меня какая то функция отключена?
     
  6. Guski

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

    Баллы:
    76
    +, так же
     
  7. HauserGrim

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

    Баллы:
    96
    Вряд ли, лишние пермы не выдавал?
     
  8. Guski

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

    Баллы:
    76
    нет
     
  9. Автор темы
    VasaPupkin1

    VasaPupkin1 Ньюби

    Баллы:
    1
    конфиг вролд этит
    Код:
    #
    # WorldEdit's Configuration File
    #
    # About editing this file:
    # - DO NOT USE TABS. You MUST use spaces or Bukkit will complain and post
    #   errors. If you use an editor, like Notepad++ (recommended for Windows
    #   users), you must configure it to "replace tabs with spaces."
    #   This can be changed in Settings > Preferences > Language Menu.
    # - Don't get rid of indentations. They are indented so some entries that are
    #   in categories, like "max-blocks-changed", are placed in the "limits"
    #   category.
    # - If you want to check the format of this file before putting it
    #   into WorldEdit, paste it into http://yaml-online-parser.appspot.com/
    #   and see if it gives you "ERROR:".
    # - Lines starting with # are comments, so they are ignored.
    # - If you want to allow blocks, make sure to change "disallowed-blocks" to []
    #
    
    limits:
        max-blocks-changed:
            default: -1
            maximum: -1
        vertical-height:
            default: 256
        max-polygonal-points:
            default: -1
            maximum: 20
        max-radius: -1
        max-super-pickaxe-size: 5
        max-brush-radius: 5
        butcher-radius:
            default: -1
            maximum: -1
        disallowed-blocks:
        - "minecraft:oak_sapling"
        - "minecraft:jungle_sapling"
        - "minecraft:dark_oak_sapling"
        - "minecraft:spruce_sapling"
        - "minecraft:birch_sapling"
        - "minecraft:acacia_sapling"
        - "minecraft:black_bed"
        - "minecraft:blue_bed"
        - "minecraft:brown_bed"
        - "minecraft:cyan_bed"
        - "minecraft:gray_bed"
        - "minecraft:green_bed"
        - "minecraft:light_blue_bed"
        - "minecraft:light_gray_bed"
        - "minecraft:lime_bed"
        - "minecraft:magenta_bed"
        - "minecraft:orange_bed"
        - "minecraft:pink_bed"
        - "minecraft:purple_bed"
        - "minecraft:red_bed"
        - "minecraft:white_bed"
        - "minecraft:yellow_bed"
        - "minecraft:powered_rail"
        - "minecraft:detector_rail"
        - "minecraft:grass"
        - "minecraft:dead_bush"
        - "minecraft:moving_piston"
        - "minecraft:piston_head"
        - "minecraft:sunflower"
        - "minecraft:rose_bush"
        - "minecraft:dandelion"
        - "minecraft:poppy"
        - "minecraft:brown_mushroom"
        - "minecraft:red_mushroom"
        - "minecraft:tnt"
        - "minecraft:torch"
        - "minecraft:fire"
        - "minecraft:redstone_wire"
        - "minecraft:wheat"
        - "minecraft:potatoes"
        - "minecraft:carrots"
        - "minecraft:melon_stem"
        - "minecraft:pumpkin_stem"
        - "minecraft:beetroots"
        - "minecraft:rail"
        - "minecraft:lever"
        - "minecraft:redstone_torch"
        - "minecraft:redstone_wall_torch"
        - "minecraft:repeater"
        - "minecraft:comparator"
        - "minecraft:stone_button"
        - "minecraft:birch_button"
        - "minecraft:acacia_button"
        - "minecraft:dark_oak_button"
        - "minecraft:jungle_button"
        - "minecraft:oak_button"
        - "minecraft:spruce_button"
        - "minecraft:cactus"
        - "minecraft:sugar_cane"
        - "minecraft:bedrock"
    
    use-inventory:
        enable: false
        allow-override: true
        creative-mode-overrides: false
    
    logging:
        log-commands: false
        file: worldedit.log
        # The format of custom log message. This is java general format string (java.util.Formatter). Arguments are:
        #   1$ : date - a Date object representing event time of the log record.
        #   2$ : source - a string representing the caller, if available; otherwise, the logger's name.
        #   3$ : logger - the logger's name.
        #   4$ : level - the log level.
        #   5$ : message - the formatted log message returned from the Formatter.formatMessage(LogRecord) method. It uses java.text formatting and does not use the java.util.Formatter format argument.
        #   6$ : thrown - a string representing the throwable associated with the log record and its backtrace beginning with a newline character, if any; otherwise, an empty string.
        # For details see:
        #   https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
        #   https://docs.oracle.com/javase/8/docs/api/java/util/logging/SimpleFormatter.html#format-java.util.logging.LogRecord-
        format: "[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s]: %5$s%6$s%n"
    
    super-pickaxe:
        drop-items: true
        many-drop-items: false
    
    snapshots:
        directory:
    
    navigation-wand:
        item: 0
        max-distance: 0
    
    scripting:
        timeout: 3000
        dir: craftscripts
    
    saving:
        dir: schematics
    
    files:
        allow-symbolic-links: false
    
    history:
        size: 15
        expiration: 10
    
    calculation:
        timeout: 100
    
    debugging:
        trace-unflushed-sessions: false
    
    wand-item: minecraft:wooden_axe
    shell-save-type:
    no-op-permissions: false
    debug: false
    show-help-on-first-use: true
    server-side-cui: true
    command-block-support: false
     
  10. Автор темы
    VasaPupkin1

    VasaPupkin1 Ньюби

    Баллы:
    1
    Ворлд гуард
     
  11. HauserGrim

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

    Баллы:
    96
    use-player-teleports включён, так что вг должен уметь проверять телепорты и проблем быть не должно.
     
  12. Автор темы
    VasaPupkin1

    VasaPupkin1 Ньюби

    Баллы:
    1
    Не работает, ради интереса зашёл на тест сервер, конфиги все нулевые , даже удалил и залил новые, не рботает
     
  13. alexandrage

    alexandrage Старожил Пользователь

    Баллы:
    173
    Опку с себя сними.
     

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