Guest User

Untitled

a guest
Aug 18th, 2017
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. # SkellettProxy config file
  2. #
  3. # The port must match the port in SkellettProxy.yml from Skellett on servers connected to this Bungeecord.
  4. version: "1.3.3a"
  5. debug: false
  6. Port: 7331
  7.  
  8. # If a spigot server fails to send a packet to SkellettProxy.
  9. # How many trys should be allowed before claiming that server as offline.
  10. AllowedTrys: 5
  11.  
  12. # If a spigot server goes unresponsive and this is true, SkellettProxy will stop tracking it.
  13. # This will throw a harmless error in your console everytime a server goes unresponsive though.
  14. DisableTracking: false
  15.  
  16. # If you have scripts in the folder plugins/SkellettProxy/scripts/
  17. # SkellettProxy will relay these scripts to all connected servers.
  18. # This acts like global scripts to keep all servers up to date.
  19. # All connected servers need to have the "events" option enabled in the SkellettProxy settings.
  20. GlobalScripts:
  21. Enabled: true
  22.  
  23. # Network variables allow you to create shared varaibles between multiple servers on the bungeecord.
  24. # SkellettProxy will handle the variables on the Bungeecord instance.
  25. NetworkVariables:
  26. Enabled: true
  27. # Allow variables to be re-writen if a server calls for it.
  28. AllowOverrides: true
  29. # Automatic sharing means that SkellettProxy will try to make Skellett's (Spigot side) variables
  30. # match the exact variables as Bungeecord.
  31. # So basically if you update a global variable, SkellettProxy will make every Spigot server variables match that.
  32. # So all you need todo is
  33. #
  34. # set network variable {test} to "Hello world!"
  35. #
  36. # Then on every other server, the variable {test} will be be set to "Hello world!"
  37. #
  38. # WARNING: Keep in mind this will override any variable names that match SkellettProxy's.
  39. # If this is enabled SkellettProxy variable names will be priority!
  40. # It should be harmless if you don't care about your old data.
  41. # And last thing, this is cap sensitive, can't change or fix that. That's Skript.
  42. AutomaticSharing: false
  43. Backups:
  44. # Backup the variables when the bungeecord ends.
  45. End: true
  46. # Backup the variables every X minutes.
  47. Interval: true
  48. # Time is in minutes.
  49. IntervalTime: 120
  50. # Broadcasts a message to console saying backups have been saved.
  51. ConsoleMessage: false
  52.  
  53. # RedisBungee support will be soon.
Advertisement
Add Comment
Please, Sign In to add comment