Advertisement
Guest User

ServerTools Config

a guest
Nov 29th, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. # Configuration file
  2.  
  3. ####################
  4. # backup
  5. #===================
  6. # Settings related to server backup
  7. ####################
  8.  
  9. backup {
  10. # Enables automatic backups at specified intervals
  11. B:AutoBackupEnable=true
  12.  
  13. # Auto-Backup interval in minutes
  14. I:AutoBackupInterval=30
  15.  
  16. # Enable the world backup module
  17. B:BackupEnable=true
  18.  
  19. # Wildcards are %MONTH, %DAY, %YEAR, %HOUR, %MINUTE, %SECOND
  20. S:BackupFileName=%MONTH-%DAY-%HOUR-%MINUTE-%YEAR-%SECOND
  21.  
  22. # The path where backups will be stored
  23. S:BackupPath=_Backup
  24.  
  25. # Set to -1 to disable day limit
  26. I:DaysToKeepBackups=2
  27.  
  28. # In Megabytes, Use -1 to disable size limit
  29. I:MaxBackupDirSize=-1
  30. }
  31.  
  32.  
  33. ####################
  34. # commandnames
  35. #===================
  36. # Allows you to rename any command
  37. ####################
  38.  
  39. commandnames {
  40. S:CommandBackup=backup
  41. S:CommandButcher=butcher
  42. S:CommandDisarm=disarm
  43. S:CommandEditTeleport=editteleport
  44. S:CommandEntityCount=entitycount
  45. S:CommandHeal=heal
  46. S:CommandHome=home
  47. S:CommandInventory=inventory
  48. S:CommandKill=kill
  49. S:CommandKillAll=killall
  50. S:CommandMotd=motd
  51. S:CommandRemoveAll=removeall
  52. S:CommandSpawn=spawn
  53. S:CommandSpawnMob=spawnmob
  54. S:CommandTeleport=teleport
  55. S:CommandTpAll=tpall
  56. S:CommandTps=tps
  57. S:CommandWhereIs=whereis
  58. }
  59.  
  60.  
  61. ####################
  62. # commands
  63. #===================
  64. # Enable or disable a command
  65. ####################
  66.  
  67. commands {
  68. B:Backup=true
  69. B:Butcher=true
  70. B:Disarm=true
  71. B:EditTeleport=true
  72. B:EntityCount=true
  73. B:Heal=true
  74. B:Home=true
  75. B:Inventory=true
  76. B:Kill=true
  77. B:KillAll=true
  78. B:Motd=true
  79. B:RemoveAll=true
  80. B:Spawn=true
  81. B:SpawnMob=true
  82. B:TPAll=true
  83. B:TPS=true
  84. B:Teleport=true
  85. B:WhereIs=true
  86. }
  87.  
  88.  
  89. ####################
  90. # general
  91. ####################
  92.  
  93. general {
  94. # Enables Debug Mode and will spam the console with a lot of things
  95. B:DebugMode=false
  96.  
  97. # The default range for the /removeall command
  98. I:DefaultRemoveAllRange=20
  99.  
  100. # Enables a Message of the Day sent to players upon logging into the server
  101. B:EnableMOTD=true
  102.  
  103. # Generate flat bedrock on world creation
  104. B:FlatBedrock=false
  105.  
  106. # The maximum range of the /removeall command
  107. I:MaxRemoveAllRange=20000
  108. }
  109.  
  110.  
  111. ####################
  112. # requireop
  113. #===================
  114. # If set to true, using the command will require Sever Operator level
  115. ####################
  116.  
  117. requireop {
  118. B:RequireOPBackup=true
  119. B:RequireOPButcher=true
  120. B:RequireOPDisarm=true
  121. B:RequireOPEditTeleport=false
  122. B:RequireOPEntityCount=false
  123. B:RequireOPHeal=true
  124. B:RequireOPHome=false
  125. B:RequireOPInventory=true
  126. B:RequireOPKillAll=true
  127. B:RequireOPKillSelf=false
  128. B:RequireOPMOTD=false
  129. B:RequireOPRemoveAll=true
  130. B:RequireOPSpawn=false
  131. B:RequireOPSpawnMob=true
  132. B:RequireOPTPAll=true
  133. B:RequireOPTPS=false
  134. B:RequireOPTeleport=false
  135. B:RequireOPWhereIs=false
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement