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

Помогите Geyser появляется ошибка при изменении конфина

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

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

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

    Баллы:
    76
    Подскажите, пожалуйста почему как я меняю в гейзере строчку на свой IP мне выдается ошибка, версия плагина та
    Код:
    # --------------------------------
    # Geyser Configuration File
    #
    # A bridge between Minecraft: Bedrock Edition and Minecraft: Java Edition.
    #
    # GitHub: https://github.com/GeyserMC/Geyser
    # Discord: https://discord.geysermc.org/
    # --------------------------------
    
    bedrock:
      # The IP address that will listen for connections.
      # There is no reason to change this unless you want to limit what IPs can connect to your server.
      address: 95.217.46.155
      # The port that will listen for connections
      port: 25538
      # Some hosting services change your Java port everytime you start the server and require the same port to be used for Bedrock.
      # This option makes the Bedrock port the same as the Java port every time you start the server.
      # This option is for the plugin version only.
      clone-remote-port: false
      # The MOTD that will be broadcasted to Minecraft: Bedrock Edition clients. This is irrelevant if "passthrough-motd" is set to true
      motd1: "GeyserMC"
      motd2: "Another GeyserMC forced host."
      # The Server Name that will be sent to Minecraft: Bedrock Edition clients. This is visible in both the pause menu and the settings menu.
      server-name: "Geyser"
    remote:
      # The IP address of the remote (Java Edition) server
      # If it is "auto", for standalone version the remote address will be set to 127.0.0.1,
      # for plugin versions, Geyser will attempt to find the best address to connect to.
      address: auto
      # The port of the remote (Java Edition) server
      # For plugin versions, if address has been set to "auto", the port will also follow the server's listening port.
      port: 25565
      # Authentication type. Can be offline, online, or floodgate (see https://github.com/GeyserMC/Geyser/wiki/Floodgate).
      auth-type: online
    
    # Floodgate uses encryption to ensure use from authorised sources.
    # This should point to the public key generated by Floodgate (Bungee or CraftBukkit)
    # You can ignore this when not using Floodgate.
    floodgate-key-file: public-key.pem
    
    ## the Xbox/MCPE username is the key for the Java server auth-info
    ## this allows automatic configuration/login to the remote Java server
    ## if you are brave/stupid enough to put your Mojang account info into
    ## a config file
    #userAuths:
    #  bluerkelp2: # MCPE/Xbox username
    #    email: [email protected] # Mojang account email address
    #    password: "this isn't really my password"
    #
    #  herpderp40300499303040503030300500293858393589:
    #    email: [email protected]
    #    password: dooooo
    
    # Bedrock clients can freeze when opening up the command prompt for the first time if given a lot of commands.
    # Disabling this will prevent command suggestions from being sent and solve freezing for Bedrock clients.
    command-suggestions: true
    
    # The following three options enable "ping passthrough" - the MOTD, player count and/or protocol name gets retrieved from the Java server.
    # Relay the MOTD from the remote server to Bedrock players.
    passthrough-motd: false
    # Relay the protocol name (e.g. BungeeCord [X.X], Paper 1.X) - only really useful when using a custom protocol name!
    # This will also show up on sites like MCSrvStatus. <mcsrvstat.us>
    passthrough-protocol-name: false
    # Relay the player count and max players from the remote server to Bedrock players.
    passthrough-player-counts: false
    # Enable LEGACY ping passthrough. There is no need to enable this unless your MOTD or player count does not appear properly.
    # This option does nothing on standalone.
    legacy-ping-passthrough: false
    # How often to ping the remote server, in seconds. Only relevant for standalone or legacy ping passthrough.
    # Increase if you are getting BrokenPipe errors.
    ping-passthrough-interval: 3
    
    # Maximum amount of players that can connect
    max-players: 100
    
    # If debug messages should be sent through console
    debug-mode: false
    
    # Thread pool size
    general-thread-pool: 32
    
    # Allow third party capes to be visible. Currently allowing:
    # OptiFine capes, LabyMod capes, 5Zig capes and MinecraftCapes
    allow-third-party-capes: true
    
    # Allow third party deadmau5 ears to be visible. Currently allowing:
    # MinecraftCapes
    allow-third-party-ears: false
    
    # Allow a fake cooldown indicator to be sent. Bedrock players do not see a cooldown as they still use 1.8 combat
    show-cooldown: true
    
    # The default locale if we dont have the one the client requested. Uncomment to not use the default system language.
    # default-locale: en_us
    
    # Configures if chunk caching should be enabled or not. This keeps an individual
    # record of each block the client loads in. While this feature does allow for a few
    # things such as block break animations to show up in creative mode and among others,
    # it is HIGHLY recommended you disable this on a production environment as it can eat
    # up a lot of RAM. However, when using the Spigot version of Geyser, support for features
    # or implementations this allows is automatically enabled without the additional caching as
    # Geyser has direct access to the server itself.
    cache-chunks: false
    
    # Specify how many days images will be cached to disk to save downloading them from the internet.
    # A value of 0 is disabled. (Default: 0)
    cache-images: 0
    
    # Bedrock prevents building and displaying blocks above Y127 in the Nether -
    # enabling this config option works around that by changing the Nether dimension ID
    # to the End ID. The main downside to this is that the sky will resemble that of
    # the end sky in the nether, but ultimately it's the only way for this feature to work.
    above-bedrock-nether-building: false
    
    # bStats is a stat tracker that is entirely anonymous and tracks only basic information
    # about Geyser, such as how many people are online, how many servers are using Geyser,
    # what OS is being used, etc. You can learn more about bStats here: https://bstats.org/.
    # https://bstats.org/plugin/server-implementation/GeyserMC
    metrics:
      # If metrics should be enabled
      enabled: true
      # UUID of server, don't change!
      uuid: eda8d888-0b86-4213-9197-f48f7a5766db
    
    # ADVANCED OPTIONS - DO NOT TOUCH UNLESS YOU KNOW WHAT YOU ARE DOING!
    
    # Geyser updates the Scoreboard after every Scoreboard packet, but when Geyser tries to handle
    # a lot of scoreboard packets per second can cause serious lag.
    # This option allows you to specify after how many Scoreboard packets per seconds
    # the Scoreboard updates will be limited to four updates per second.
    scoreboard-packet-threshold: 20
    
    # Allow connections from ProxyPass and Waterdog.
    # See https://www.spigotmc.org/wiki/firewall-guide/ for assistance - use UDP instead of TCP.
    enable-proxy-connections: false
    
    # The internet supports a maximum MTU of 1492 but could cause issues with packet fragmentation.
    # 1400 is the default.
    # mtu: 1400
    
    config-version: 4
    

    Ошибк:
    Код:
    [13:54:45 ERROR]: null
    org.bukkit.command.CommandException: Cannot execute command 'geyser' in plugin Geyser-Spigot v1.1.0 - plugin is disabled.
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[patched_1.16.1.jar:git-Paper-136]
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:159) ~[patched_1.16.1.jar:git-Paper-136]
            at org.bukkit.craftbukkit.v1_16_R1.CraftServer.dispatchCommand(CraftServer.java:794) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.PlayerConnection.handleCommand(PlayerConnection.java:1910) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.PlayerConnection.a(PlayerConnection.java:1721) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:47) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.PacketPlayInChat.a(PacketPlayInChat.java:5) ~[patched_1.16.1.jar:git-Paper-136]        at net.minecraft.server.v1_16_R1.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:23) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.TickTask.run(SourceFile:18) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.MinecraftServer.aZ(MinecraftServer.java:1137) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.MinecraftServer.executeNext(MinecraftServer.java:1130) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.MinecraftServer.sleepForTick(MinecraftServer.java:1091) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.MinecraftServer.v(MinecraftServer.java:1005) ~[patched_1.16.1.jar:git-Paper-136]
            at net.minecraft.server.v1_16_R1.MinecraftServer.lambda$a$0(MinecraftServer.java:177) ~[patched_1.16.1.jar:git-Paper-136]
            at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
    >
     
  2. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Плагин выключен. Ищи ошибку в логе раньше.
     
  3. Автор темы
    Guski

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

    Баллы:
    76
    Код:
    [13:53:49 INFO]: PlaceHolderApi has been detected[MOTD] [Placeholder] PlaceholderAPI hooked.
    [13:53:49 INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v1.1.0
    [13:53:49 INFO]: [Geyser-Spigot] ******************************************
    [13:53:49 INFO]: [Geyser-Spigot]
    [13:53:49 INFO]: [Geyser-Spigot] Загрузка Geyser версии 1.1.0 (git-master-3c1d4aa)
    [13:53:49 INFO]: [Geyser-Spigot]
    [13:53:49 INFO]: [Geyser-Spigot] ******************************************
    [13:53:49 WARN]: [org.geysermc.platform.spigot.shaded.reflections.Reflections] given scan urls are empty. set urls in the configuration
    [13:53:49 WARN]: [org.geysermc.platform.spigot.shaded.reflections.Reflections] given scan urls are empty. set urls in the configuration
    [13:53:57 WARN]: [org.geysermc.platform.spigot.shaded.reflections.Reflections] given scan urls are empty. set urls in the configuration
    [13:53:57 WARN]: [org.geysermc.platform.spigot.shaded.reflections.Reflections] given scan urls are empty. set urls in the configuration
    [13:53:57 WARN]: [org.geysermc.platform.spigot.shaded.reflections.Reflections] given scan urls are empty. set urls in the configuration
    [13:53:58 ERROR]: [Geyser-Spigot] Не удалось запустить Geyser на 95.217.46.155:25538
    [13:53:58 WARN]: java.util.concurrent.CompletionException: java.net.BindException: Cannot assign requested address: bind[13:53:58 WARN]:        at java.util.concurrent.CompletableFuture.encodeThrowable(Unknown Source)
    [13:53:58 WARN]:        at java.util.concurrent.CompletableFuture.completeThrowable(Unknown Source)
    [13:53:58 WARN]:        at java.util.concurrent.CompletableFuture.biRelay(Unknown Source)
    [13:53:58 WARN]:        at java.util.concurrent.CompletableFuture$BiRelay.tryFire(Unknown Source)
    [13:53:58 WARN]:        at java.util.concurrent.CompletableFuture.postComplete(Unknown Source)
    [13:53:58 WARN]:        at java.util.concurrent.CompletableFuture.completeExceptionally(Unknown Source)
    [13:53:58 WARN]:        at com.nukkitx.network.util.Bootstraps.lambda$allOf$0(Bootstraps.java:111)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:577)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:551)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:490)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:615)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:608)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:117)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:994)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:553)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1346)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:503)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:488)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:985)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel.bind(AbstractChannel.java:247)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:344)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:510)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:518)[13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.concurrent.SingleThreadEventExecutor$6.run(SingleThreadEventExecutor.java:1050)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
    [13:53:58 WARN]:        at java.lang.Thread.run(Unknown Source)
    [13:53:58 WARN]: Caused by: java.net.BindException: Cannot assign requested address: bind
    [13:53:58 WARN]:        at sun.nio.ch.Net.bind0(Native Method)
    [13:53:58 WARN]:        at sun.nio.ch.Net.bind(Unknown Source)
    [13:53:58 WARN]:        at sun.nio.ch.DatagramChannelImpl.bind(Unknown Source)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils$6.run(SocketUtils.java:125)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils$6.run(SocketUtils.java:122)
    [13:53:58 WARN]:        at java.security.AccessController.doPrivileged(Native Method)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils.bind(SocketUtils.java:122)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.socket.nio.NioDatagramChannel.doBind0(NioDatagramChannel.java:199)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.socket.nio.NioDatagramChannel.doBind(NioDatagramChannel.java:194)
    [13:53:58 WARN]:        at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:551)
    [13:53:58 WARN]:        ... 12 more
    [13:53:58 ERROR]: Error occurred while enabling Geyser-Spigot v1.1.0 (Is it up to date?)
    java.util.concurrent.CompletionException: java.net.BindException: Cannot assign requested address: bind
            at java.util.concurrent.CompletableFuture.encodeThrowable(Unknown Source) ~[?:1.8.0_251]
            at java.util.concurrent.CompletableFuture.completeThrowable(Unknown Source) ~[?:1.8.0_251]
            at java.util.concurrent.CompletableFuture.biRelay(Unknown Source) ~[?:1.8.0_251]
            at java.util.concurrent.CompletableFuture$BiRelay.tryFire(Unknown Source) ~[?:1.8.0_251]
            at java.util.concurrent.CompletableFuture.postComplete(Unknown Source) ~[?:1.8.0_251]
            at java.util.concurrent.CompletableFuture.completeExceptionally(Unknown Source) ~[?:1.8.0_251]
            at com.nukkitx.network.util.Bootstraps.lambda$allOf$0(Bootstraps.java:111) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:577) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:551) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:490) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:615) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:608) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:117) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.safeSetFailure(AbstractChannel.java:994) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:553) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.DefaultChannelPipeline$HeadContext.bind(DefaultChannelPipeline.java:1346) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannelHandlerContext.invokeBind(AbstractChannelHandlerContext.java:503) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannelHandlerContext.bind(AbstractChannelHandlerContext.java:488) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.DefaultChannelPipeline.bind(DefaultChannelPipeline.java:985) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel.bind(AbstractChannel.java:247) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.bootstrap.AbstractBootstrap$2.run(AbstractBootstrap.java:344) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:510) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:518) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.concurrent.SingleThreadEventExecutor$6.run(SingleThreadEventExecutor.java:1050) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[?:?]
            at java.lang.Thread.run(Unknown Source) [?:1.8.0_251]
    Caused by: java.net.BindException: Cannot assign requested address: bind
            at sun.nio.ch.Net.bind0(Native Method) ~[?:1.8.0_251]
            at sun.nio.ch.Net.bind(Unknown Source) ~[?:1.8.0_251]
            at sun.nio.ch.DatagramChannelImpl.bind(Unknown Source) ~[?:1.8.0_251]
            at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils$6.run(SocketUtils.java:125) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils$6.run(SocketUtils.java:122) ~[?:?]
            at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_251]
            at org.geysermc.platform.spigot.shaded.netty.util.internal.SocketUtils.bind(SocketUtils.java:122) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.socket.nio.NioDatagramChannel.doBind0(NioDatagramChannel.java:199) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.socket.nio.NioDatagramChannel.doBind(NioDatagramChannel.java:194) ~[?:?]
            at org.geysermc.platform.spigot.shaded.netty.channel.AbstractChannel$AbstractUnsafe.bind(AbstractChannel.java:551) ~[?:?]
            ... 12 more
     
  4. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Секция Bedrock предназначена для настроек входа с бедрок-версии. Попробуй вернуть как было.
     
  5. Автор темы
    Guski

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

    Баллы:
    76
    я в конфиге ничего не менял, что я изменил IP Адрес и порт
     
  6. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Я и говорю про адрес.
     
  7. Автор темы
    Guski

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

    Баллы:
    76
    если поставить дефолт 0.0.0.0, то все работает
     
  8. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Ну.. тогда и не меняй ничего?
     
  9. Автор темы
    Guski

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

    Баллы:
    76
    Я понимаю, но.. как люди будут подключатся если не указать в той строчке IP Сервера или я не так все понимаю?
     
  10. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Скорей второе. Geyser уже "слушает" подключения к указанному порту на IP твоего сервера. Если очень кратко, IP-адрес 0.0.0.0 это любые доступные IP-адреса.
     
  11. Автор темы
    Guski

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

    Баллы:
    76
    хорошо, у меня получилось я захожу мне пишет: вам нужен аккаунт JaVA Edition что бы играть на этом сервере, с чем это связано ?
     
  12. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    По-дефолту Geyser требует лицензию MC для входа. Для пиратских серверов требуется Floodgate. Советую почитать об этом на вики плагина.
     
  13. Автор темы
    Guski

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

    Баллы:
    76
    ну хорошо, я скачал, надеюсь то и что длаьше то:whistle:
    скачал я это https://www.spigotmc.org/resources/bedrock-player-managment-for-floodgate-geyser.82278/
    на гитхабе читал не нашел ничего
     
    Последнее редактирование: 17 сен 2020
  14. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
  15. Artemcikos

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

    Баллы:
    46
  16. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Ты вроде не ТС, но ладно. Ставишь Floodgate на сервер, в конфиге Geyser auth-type указываешь floodgate, перезагружаешь сервер. Но просто так всё ещё нельзя будет зайти - для игры требуется залогиниться аккаунтом Xbox на тлф. Аккаунт вроде бесплатно можно сделать, не помню точно.
    Также будут некоторые проблемы с никами и UUID - Floodgate добавляет свой суффикс к нику(можно изменить/убрать), а также генерирует кастомные UUID, потому есть вероятность, что многие плагины будут глючить при работе с такими игроками. Думаю, проще всего будет редактировать код плагина, чтобы он не занимался подобной фигней с UUID и запросами аккаунта(второе, впрочем, может вызвать дыру в безопасности), но это уже на ваших плечах.
     
  17. Artemcikos

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

    Баллы:
    46
    вроде поставил
    Код:
     # The IP address of the remote (Java Edition) server
      # If it is "auto", for standalone version the remote address will be set to 127.0.0.1,
      # for plugin versions, Geyser will attempt to find the best address to connect to.
      address: auto
      # The port of the remote (Java Edition) server
      # For plugin versions, if address has been set to "auto", the port will also follow the server's listening port.
      port: 25538
      # Authentication type. Can be offline, online, or floodgate (see https://github.com/GeyserMC/Geyser/wiki/Floodgate).
      auth-type: floodgate
    , но теперь ошибка при работе и да я тот плашина скачал? upload_2020-9-17_15-55-21.png
     
  18. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Floodgate качать здесь https://ci.nukkitx.com/job/GeyserMC/job/Floodgate/job/development/lastSuccessfulBuild/
     
  19. Artemcikos

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

    Баллы:
    46
  20. imDaniX

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

    Баллы:
    96
    Имя в Minecraft:
    imDaniX
    Очевидно, bukkit.
     

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