Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ####################
  4. # lists
  5. #===================
  6. # Alternative ban/whitelist/VIP/max players implementation. Make sure vipslots and offset added together is less than the amount of players specified in server.properties.
  7. ####################
  8.  
  9. lists {
  10. # If you need to be able to have less than the amount of players specified in server.properties logged into your server, use this.
  11. I:offset=0
  12.  
  13. # Amount of slots reserved for VIP players.
  14. I:vipslots=5
  15.  
  16. # Enable or disable the ForgeEssentials whitelist. Note that server.properties will be used if this is set to false.
  17. B:whitelistEnabled=false
  18. ####################
  19. # kickmsg
  20. #===================
  21. # Kick messages for banned/unwhitelisted players or when the server is full (not counting VIP slots
  22. ####################
  23.  
  24. kickmsg {
  25. }
  26.  
  27. ####################
  28. # kick
  29. ####################
  30.  
  31. kick {
  32. S:bannedmsg=Zostales zbanowany na serwerze.
  33. S:notVIPmsg=Serwer jest pelny, a ty nie masz zarezerwowanego slota.
  34. S:unwhitelistedmsg=Nie znajdujesz sie na whitelist serwera.
  35. }
  36.  
  37. }
  38.  
  39.  
  40. ####################
  41. # main
  42. #===================
  43. # all the main important stuff
  44. ####################
  45.  
  46. main {
  47. # Allows people to register usernames while server is offline. Don't allow this for primarily Online servers.
  48. B:allowOfflineReg=true
  49.  
  50. # Enables authentication server if and when the Minecraft Auth servers go down.
  51. B:autoEnable=false
  52.  
  53. # Allow players not registered/not logged in with the authentication service to move in the world.
  54. B:canMoveWithoutLogin=false
  55.  
  56. # Interval to check Vanill Auth service. In minutes.
  57. I:checkInterval=10
  58.  
  59. # Forces the authentication server to be loaded regardless of Minecraft auth services
  60. B:forceEnable=true
  61.  
  62. # The salt to be used when hashing passwords
  63. S:salt=>jZ~u~wlR
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement