Advertisement
Guest User

Untitled

a guest
Oct 9th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.63 KB | None | 0 0
  1. DataSource:
  2.     # What type of database do you want to use?
  3.     # Valid values: sqlite, mysql
  4.     backend: 'MYSQL'
  5.     # Enable database caching, should improve database performance
  6.     caching: false
  7.     # Database host address
  8.     mySQLHost: '185.25.206.222'
  9.     # Database port
  10.     mySQLPort: '3306'
  11.     # Username about Database Connection Infos
  12.     mySQLUsername: 'root'
  13.     # Password about Database Connection Infos
  14.     mySQLPassword: 'h9WmQ/3nK@z0al-fP7x'
  15.     # Database Name, use with converters or as SQLITE database name
  16.     mySQLDatabase: 'authme'
  17.     # Table of the database
  18.     mySQLTablename: 'authme'
  19.     # Column of IDs to sort data
  20.     mySQLColumnId: 'id'
  21.     # Column for storing or checking players nickname
  22.     mySQLColumnName: 'username'
  23.     # Column for storing or checking players RealName
  24.     mySQLRealName: 'realname'
  25.     # Column for storing players passwords
  26.     mySQLColumnPassword: 'password'
  27.     # Column for storing players emails
  28.     mySQLColumnEmail: 'email'
  29.     # Column for storing if a player is logged in or not
  30.     mySQLColumnLogged: 'isLogged'
  31.     # Column for storing players ips
  32.     mySQLColumnIp: 'ip'
  33.     # Column for storing players lastlogins
  34.     mySQLColumnLastLogin: 'lastlogin'
  35.     # Column for storing player LastLocation - X
  36.     mySQLlastlocX: 'x'
  37.     # Column for storing player LastLocation - Y
  38.     mySQLlastlocY: 'y'
  39.     # Column for storing player LastLocation - Z
  40.     mySQLlastlocZ: 'z'
  41.     # Column for storing player LastLocation - World Name
  42.     mySQLlastlocWorld: 'world'
  43.     # Enable this when you allow registration through a website
  44.     mySQLWebsite: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement