Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.09 KB | None | 0 0
  1. #basic mysql config
  2. mysql:
  3.     username: 'root'
  4.     password: ''
  5.     host: '127.0.0.1'
  6.     base: 'meinlog'
  7. log:
  8.     blocklog: true
  9.     chatlog: true
  10.     commandlog: true
  11. #minelog deletes itself logs witch are older than x hours:
  12. autodelete:
  13.     hoursintervall: 168
  14. items:
  15.     itemwand: 280
  16.     blockwand: 5
  17.    
  18. messages:
  19.     errormessages:
  20.         nothingtorollback: '{red}Nothing to Rollback'
  21.         consolenotallowed: 'Only Players are allowed to use this Command!'
  22.         worldeditnotfound: '{red}WorldEdit plugin not found, WE rollback disabled!'
  23.         youarenotallowed: '{red}You are not allowed to do this!'
  24.         permissionsnotfound: 'Permission system not detected, defaulting to OP'
  25.     remember:
  26.      #variablen: amount
  27.         countmessage: '{purple}%amount%{orange} edits on this block'
  28.         #vars: player,block,x,y,z,timestamp,id
  29.         blockbreakmessage: '{orange}%player%{aqua} broke {orange} %block% {aqua} at {orange}%timestamp%'
  30.         blockplacemessage: '{orange}%player%{aqua} placed {orange} %block% {aqua} at {orange}%timestamp%'
  31.         playermessage: '{aqua}%player%: {orange}%message%'
  32.         noedits: '{red}No edits on this Block!'
  33.         divisionline: '{orange}---------------------------------------'
  34.         historyenabled: '{light_purple}History is enabled now!'
  35.         historydisabled: '{light_purple}History is disabled now!'
  36.     rollback:
  37.         countmessage: '{aqua}Rolled back {red}%count% {aqua}edits!'
  38.         rollbackdone: '{aqua}Rollback done'
  39.         nothingtorollback: '{red}Nothing to rollback!'
  40.     others:
  41.         help: '{gold}%command% {red} -> {aqua}%description%'
  42.         reload: '{orange}Reloaded the config'
  43.         reconnect: '{orange}Reconnected'
  44.         allsessionsremoved: '{orange}Removed all Sessions'
  45.         tablecleared: '{red} Table cleared'
  46. permissions:
  47.     histroy: 'minelog.use.history'
  48.     rollback: 'minelog.mod.rollback'
  49.     removesessions: 'minelog.mod.removesessions'
  50.     reload: 'minelog.mod.reload'
  51.     chathistory: 'minelog.use.chat'
  52.     commandhistory: 'minelog.use.command'
  53.     help: 'minelog.use.help'
  54.     clear: 'minelog.admin.clear'
  55.     listcolors: 'minelog.mod.listcolors'
  56. colors:
  57.     black:
  58.        - 'black'
  59.         - 'schwarz'
  60.     dark_blue:
  61.        - 'dark_blue'
  62.         - 'dunkelblau'
  63.     dark_green:
  64.        - 'dark_green'
  65.         - 'green'
  66.     dark_aqua:
  67.        - 'dark_aqua'
  68.         - 'dunkelwasser'
  69.     dark_red:
  70.        - 'dark_red'
  71.         - 'dunkelrot'
  72.     dark_purple:
  73.        - 'dark_purple'
  74.         - 'dunkelpurpur'
  75.     gold:
  76.        - 'gold'
  77.         - 'orange'
  78.     gray:
  79.        - 'gray'
  80.         - 'grau'
  81.     dark_gray:
  82.        - 'dark_grey'
  83.         - 'dunkelgrau'
  84.     blue:
  85.        - 'blue'
  86.         - 'blau'
  87.     green:
  88.        - 'green'
  89.         - 'grün'
  90.     aqua:
  91.        - 'aqua'
  92.         - 'light_blue'
  93.         - 'hellblau'
  94.     red:
  95.        - 'red'
  96.         - 'rot'
  97.         - 'blut'
  98.     light_purple:
  99.        - 'light_purple'
  100.         - 'hellpurpur'
  101.     yellow:
  102.        - 'yellow'
  103.         - 'gelb'
  104.     white:
  105.        - 'white'
  106.         - 'weiß'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement