Advertisement
Guest User

Untitled

a guest
Apr 11th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. core {
  2.     # This is the template for the /ru check command, accepted entries are:
  3.     # {player}        - The Player's name (the one being checked)
  4.    # {rank-next}        - The Player's next rank
  5.     # {rank}          - The current rank of the player
  6.     # {prefix}        - The prefix of the player's current group
  7.    # {timing-time}   - How much time the player has been playing
  8.    # {timing-next}   - How much time until the player joins the next group
  9.    # {economy-bal}   - How much money the player has
  10.    # {economy-next}  - How much money the player needs to join the next group
  11.    # {purchase-left}  - How much money will be left after rank purchase
  12.    # {joindate}      - The date of when the player joined your server
  13.    # {lastjoin}      - When the player last joined the server
  14.    # {purchase-button}      - button used to purchase the next rank (needs purchase module)
  15.    # {track}         - The current track of the player.
  16.    check-message=[
  17.        "§6---[§2{player}§6]---",
  18.        "§fRank: {rank}",
  19.        "§fTrack: {track}",
  20.        "§fPlay time: {timing-time}",
  21.        "§fTime to next group: {timing-next}",
  22.        "§fJoin date: §a{joindate}",
  23.        "§fLast join: §9{lastjoin}",
  24.        "§6-----------"
  25.    ]
  26.    # setting for "days" output in time desc
  27.    daysDisplay="day(s)"
  28.    # If true a message will be output to console every time players are updated or checked.
  29.    debug-mode=false
  30.    # This is weird, but basically Luckperms is screwing with something, anyway, please put your BASE group here (luckperms default is "default"
  31.    defaultGroup=default
  32.    # List of disabled groups
  33.    disabled-groups=[
  34.        admin,
  35.        mod,
  36.        owner
  37.    ]
  38.    # The message to display for a player in chat when they login to the server for the first time
  39.    first-time-welcome-message="Welcome to our server {player}!"
  40.    # setting for "hours" output in time desc
  41.    hoursDisplay="hour(s)"
  42.    # setting for "minutes" output in time desc
  43.    minutesDisplay="minute(s)"
  44.    # This is the prefix that will be put in place if a player has no prefix, leave "" to have no prefix fall-back
  45.    prefix-fallback=Default
  46.    # the command the plugin will execute via console to remove a rank from a player, valid entries: {player} and {group}
  47.    rankdown-command="luckperms user {player} parent remove {group}"
  48.    # The command the plugin will execute via console to add a rank to a player, valid entries: {player} and {group}
  49.    rankup-command="luckperms user {player} parent add {group}"
  50.    # Whether to remove all other player groups from player after rankUp (Using "rankdown-command")
  51.    remove-previous-group=true
  52.    # This is where all track config names are defined, please be careful here.
  53.    track-configs=[
  54.        "groups.conf"
  55.    ]
  56.    # The message to display for a player in chat when they login to the server
  57.    welcome-message=""
  58. }
  59. databases {
  60.    # You may choose between MySQL (Mariadb works too) or H2 (Hikari) databases for Player Stats storage!
  61.    database=h2
  62.    sqlAddress="localhost:3306"
  63.    sqlDatabase=rankup
  64.    sqlPassword=pass
  65.    sqlTablePrefix="rankup_"
  66.    sqlUsername=user
  67. }
  68. magibridge {
  69.    # Message to discord when a player ranks up!
  70.    # valid entries: {player}, {magibridge-next} and {magibridge-current}
  71.    rankup-Message="Player {player} has left the {magibridge-current} group and joined the {magibridge-next} group! :smile:"
  72.    # Set to true if you want the rankup message sent in the MC-Staff channel instead!
  73.    # (Only possible if Magibridge is set to use Nucleus)
  74.    send-in-staff=false
  75. }
  76. modules {
  77.    databases=ENABLED
  78.    economy=DISABLED
  79.    magibridge=ENABLED
  80.    purchase=DISABLED
  81.    timing=ENABLED
  82. }
  83. timing {
  84.    # Here you may set how you want to have the body of the top command display, accepted entries are same as check-message
  85.    top-message=[
  86.        "§6---[§2{player}§6]---",
  87.        "§fRank: {rank}",
  88.        "§f{timing-time}",
  89.        "§fJoin date: §a{joindate}",
  90.        "§6-----------"
  91.    ]
  92.    # This is where you may define how the bottom of the top message displays
  93.    top-message-footer="§f----------------------------"
  94.    # This is where you may define how the top of the top message displays
  95.    top-message-head="§f------{Top Play Times}------"
  96.    # The amount of minutes to pass between timing updates
  97.    update-interval=1
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement