Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.80 KB | None | 0 0
  1. # Duels v1.0 by Callum McCloskey
  2.  
  3. # User Storage - Where should player data be stored?
  4. storage:
  5.   database:
  6.     enabled: false
  7.     ip: "ip"
  8.     port: "port"
  9.     name: "database-name"
  10.     username: "username"
  11.     password: "password"
  12.   flatfile:
  13.     enabled: true
  14.  
  15. # How long should a duel request remaing valid after being sent?
  16. request-timeout: 15
  17.  
  18. # Duel starting countdown.
  19. countdown: 5
  20.  
  21. # Maximum duel duration time limit.
  22. time-limit: 900
  23.  
  24. # Where will players be taken after a duel?
  25. # > LastLocation - Where the player was before the duel.
  26. # > Lobby - A set lobby location. (Must have a lobby location set to use this: /duel setlobby)!
  27. end-location: LastLocation
  28.  
  29. # Allow use of commands in duel?
  30. allow-commands: false
  31.  
  32. # Commands always allowed in a duel
  33. allowed-commands:
  34.  - feed
  35.  
  36. # Rewards given on a duel win!
  37. win-rewards:
  38.   enabled: true
  39.   commands:
  40.    - "eco give %player% 1000"
  41.  
  42. # Enabled bet types
  43. betting:
  44.   money: true
  45.   mcmmo: true
  46.  
  47. # Duel Scoreboard
  48. scoreboard:
  49.   enabled: true
  50.   title: "&8» &cDuel &8«"
  51.   lines:
  52.    - "&8&m-----------------------"
  53.     - "&7Opponent: &f%opponent%"
  54.     - "&7Arena: &f%arena%"
  55.     - ""
  56.     - "&7Kit: &f%kit%"
  57.     - "&7Ping: &f%player_ping%ms"
  58.     - " "
  59.     - "&7Wins: &f%wins%"
  60.     - "&7Losses: &f%losses%"
  61.     - " "
  62.     - "&7Wager-Wins: &f%wager-wins%"
  63.     - "&7Wager-Losses: &f%wager-losses%"
  64.     - "&8&m-----------------------"
  65.  
  66. # Messages sent to players.
  67. messages:
  68.   err-no-pending-requests:
  69.     - "&7You have no pending duel requests."
  70.   err-invalid-player:
  71.     - "&7The player &b%player% &7is not valid."
  72.   err-duel-invalid:
  73.     - "&7This duel is no longer valid."
  74.   err-invalid-bet:
  75.    - "&7You have entered an invalid bet amount."
  76.   err-invalid-funds:
  77.    - "&7You don't have enough funds to bet that."
  78.   err-cant-compete:
  79.    - "&7This user can't match your wager."
  80.   request-declined:
  81.    - "&7You have declined the duel request from &b%player%&7."
  82.   request-sent-declined:
  83.    - "&b%player% &7has declined your duel request."
  84.   request-accepted:
  85.    - "&b%player% &7has accepted your duel request."
  86.   request-received:
  87.    - "&7Duel request received from &b%player%&7, this request will expire in &b%timeout% &7seconds. &7Type &b/duel accept &7to accept this request."
  88.   request-sent:
  89.    - "&7Request sent to &b%player%&7, this request will expire in &b%timeout% &7seconds."
  90.   request-received-wager:
  91.    - "&7Duel request received from &b%player%&7, this request will expire in &b%timeout% &7seconds. &7Type &b/duel accept &7to accept this request."
  92.     - "&7This request has a %wager% wager attached, amount: %amount%"
  93.   request-sent-wager:
  94.    - "&7Request sent to &b%player%&7, this request will expire in &b%timeout% &7seconds."
  95.     - "&7This request has a %wager% wager attached, amount: %amount%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement