Advertisement
lukemango

Untitled

Mar 17th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. # In Floodgate bedrock player data is send encrypted
  2. # The following value should point to the key Floodgate generated.
  3. # The public key should be used for the Geyser(s) and the private key for the Floodgate(s)
  4. key-file-name: key.pem
  5.  
  6. # Floodgate prepends a prefix to bedrock usernames to avoid conflicts
  7. # However, certain conflicts can cause issues with some plugins so this prefix is configurable using the property below
  8. # It is recommended to use a prefix that does not contain alphanumerical to avoid the possibility of duplicate usernames.
  9. username-prefix: "BR__"
  10.  
  11. # Should spaces be replaced with '_' in bedrock usernames?
  12. replace-spaces: true
  13.  
  14. # Should Bungeecord send the bedrock player data to the servers it is connecting to?
  15. # This requires Floodgate to be installed on the servers.
  16. # You'll get kicked if you don't use the plugin. The default value is false because of it
  17. send-floodgate-data: false
  18.  
  19. disconnect:
  20. # The disconnect message Geyser users should get when connecting
  21. # to the server with an invalid key
  22. invalid-key: "Please connect through the official IP: br.craftyourtown.com:19132"
  23. # The disconnect message Geyser users should get when connecting
  24. # to the server with the correct key but not with the correct data format
  25. invalid-arguments-length: Expected {0} arguments, got {1}. Is Geyser up-to-date?
  26.  
  27. # Configuration for player linking
  28. player-link:
  29. # Whether to enable the linking system. Turning this off will prevent
  30. # players from using the linking feature even if they are already linked.
  31. enable: false
  32. # The type of storage system you want to use
  33. # Currently implemented: SQLite
  34. type: sqlite
  35. # Whether to allow the use of /linkaccount and /unlinkaccount
  36. # You can also use allow specific people to use the commands using the
  37. # permissions floodgate.linkaccount and floodgate.unlinkaccount.
  38. # This is only for linking, already connected people will stay connected
  39. allow-linking: true
  40. # The amount of time until a link code expires in seconds
  41. link-code-timeout: 300
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement