Guest User

Untitled

a guest
Dec 20th, 2018
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 10.24 KB | None | 0 0
  1. Settings:
  2.   Prefix: "&aActionPoints >> &f"
  3.   # Removes points from a player when inactive for too long. Checks happen every 24 hours.
  4.   Inactivity:
  5.     Enabled: true
  6.     # If the player has been offline for this amount of days, remove points.
  7.     DaysUntilDecay: 7
  8.     # Points to remove every day.
  9.     PointsToRemove: 50
  10.   MySQL:
  11.     Use: false
  12.     Host: "localhost"
  13.     Port: 3306
  14.     Username: "root"
  15.     Password: "somerandompass"
  16.     # The database has to exist.
  17.     Database: "actionpoints"
  18.     # Only increase when you see timeout errors or logins are 5 seconds longer.
  19.     PoolSize: 20
  20.   # Rewards can only be earned once, until the player's balance has been reset.
  21.   Rewards:
  22.    # When the player's point balance is equal to or greater than the specified amount of points, player's balance will be reset and the player will be able to get all rewards again.
  23.     ResetAt: 2000
  24.     # Commands to execute when reaching a specific amount of points. Don't include the /.
  25.     # Format:
  26.     # {points}:
  27.     #   - /eco give %player% 200
  28.     #   Message: "{message here}"
  29.     Rewards:
  30.       200:
  31.         Commands:
  32.        - eco give %player% 50
  33.         Message: "You are just getting started %player%..."
  34.       400:
  35.         Commands:
  36.        - eco give %player% 100
  37.       600:
  38.         Commands:
  39.        - eco give %player% 150
  40.       800:
  41.         Commands:
  42.        - eco give %player% 200
  43.       1000:
  44.         Commands:
  45.        - eco give %player% 250
  46.         - give %player% 5 iron_ingot
  47.         Message: "Half way there! Enjoy your rewards!"
  48.       1200:
  49.         Commands:
  50.        - eco give %player% 300
  51.         - give %player% 7 iron_ingot
  52.       1400:
  53.         Commands:
  54.        - eco give %player% 350
  55.         - give %player% 5 gold_ingot
  56.       1600:
  57.         Commands:
  58.        - eco give %player% 400
  59.         - give %player% 7 gold_ingot
  60.       1800:
  61.         Commands:
  62.        - eco give %player% 450
  63.         - give %player% 5 diamond
  64.       2000:
  65.         Commands:
  66.        - eco give %player% 500
  67.         - give %player% 7 diamond
  68.         Message: "Your points balance has been reset and you gained the highest reward!"
  69.   # Ranks are configured the same way as rewards, except that you have to specify a string with the rank name instead of a command.
  70.   # WARNING! THIS FEATURE IS EXPERIMENTAL!
  71.   Ranks:
  72.     Enabled: false
  73.     # This rank should not be removed
  74.     0:
  75.      # This value is used for the %actionpoints_fullrank% placeholder.
  76.       FullName: "&6Wood"
  77.       # This value is used for the %actionpoints_rankprefix% placeholder.
  78.       Prefix: "&6[W]"
  79.     500:
  80.       FullName: "&eGold"
  81.       Prefix: "&e[G]"
  82.     1000:
  83.       FullName: "&7Iron"
  84.       Prefix: "&7[I]"
  85.     1500:
  86.       FullName: "&bDiamond"
  87.       Prefix: "&b[D]"
  88.     2000:
  89.       FullName: "&5Obsidian"
  90.       Prefix: "&5[O]"
  91.  
  92.   Commands:
  93.    # This command gives a random amount of points between MinPoints and MaxPoints.
  94.     Beg:
  95.       Enabled: true
  96.       MinPoints: 10
  97.       MaxPoints: 50
  98.     # Allows you to claim points every 24 hours.
  99.     Daily:
  100.       Enabled: true
  101.       Points: 100
  102.     # Allows you to play trivia every X minutes you specify.
  103.     Trivia:
  104.       Enabled: true
  105.       # Rewards these amount of points when you pick the right answer.
  106.       PointReward: 25
  107.       WrongAnswer:
  108.        # When true, points will be removed when the answer is wrong.
  109.         RemovePoints: true
  110.         # Only used when RemovePoints is true.
  111.         PointsToRemove: 10
  112.       Timeout:
  113.        # To disable, set to 0.
  114.         Minutes: 5
  115.       Menu:
  116.        # Here you can customize each trivia menu button.
  117.         # 1.13 names should be used for Materials, even when not on that version, but you can still use the older names.
  118.         # Material names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  119.         Question:
  120.           Material: REDSTONE_TORCH
  121.           Title: "&6%question%"
  122.         Answer1:
  123.           Material: WOOL
  124.           Title: "&f%answer%"
  125.         Answer2:
  126.           Material: WOOL
  127.           Title: "&f%answer%"
  128.         Answer3:
  129.           Material: WOOL
  130.           Title: "&f%answer%"
  131.         Answer4:
  132.           Material: WOOL
  133.           Title: "&f%answer%"
  134.  
  135. Actions:
  136.   Anvil:
  137.    # Awards points when a player modifies an item with an anvil.
  138.     Enabled: true
  139.     Points: 5
  140.   # Awards the specified amount of points when one of the specified blocks has been broken.
  141.   BlockBreak:
  142.     Enabled: true
  143.     # Format: BLOCK_NAME:points
  144.     # 1.13 names should be used, even when not on that version, but you can still use the older names.
  145.     # Block names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  146.     Blocks:
  147.    - STONE:1
  148.     - IRON_ORE:3
  149.     - GOLD_ORE:3
  150.     - DIAMOND_ORE:5
  151.     Timeout:
  152.      # When enabled, the player can't get any points for this action for the specified amount of seconds after breaking one of the specified blocks.
  153.       Enabled: false
  154.       Seconds: 30
  155.   # Awards points when any of the specified blocks is placed by a player.
  156.   BlockPlace:
  157.     Enabled: true
  158.     # Format: BLOCK_NAME:points
  159.     # 1.13 names should be used, even when not on that version, but you can still use the older names.
  160.     # Block names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  161.     Blocks:
  162.    - DIAMOND_BLOCK:20
  163.     - IRON_BLOCK:10
  164.     - GOLD_BLOCK:15
  165.     - OBSIDIAN:5
  166.     Timeout:
  167.      # When enabled, the player can't get any points for this action for the specified amount of seconds after breaking one of the specified blocks.
  168.       Enabled: false
  169.       Seconds: 30
  170.     # When false, the player will not get points if the block they broke was placed by any player.
  171.     AllowPlacedBlocks: false
  172.   # Awards the specified amount of points for any chat message that ISN'T blocked by any other plugin.
  173.   Chat:
  174.     Enabled: true
  175.     Points: 1
  176.     # Requires the specified amount of characters in the message to get points.
  177.     # Set to 1 to disable.
  178.     MinimumChars: 10
  179.     Similarity:
  180.      # When false, messages similar to the previous ones will be ignored. Players won't get points for similar messages.
  181.       Allow: false
  182.       # If the similarity of the message is equal to or higher than the specified percentage, it will be ignored.
  183.       Percentage: 80
  184.   # Awards the specified amount of points when any of the commands are executed.
  185.   # It is not recommended to enable this unless you have a reason to. You can easily abuse this.
  186.   Command:
  187.     Enabled: false
  188.     # Format: /command:points
  189.     # Include the /.
  190.     Commands:
  191.    - /msg:1
  192.     - /tpaccept:1
  193.     - /tpa:1
  194.     Timeout:
  195.      # When enabled, the player can't get any points for this action for the specified amount of seconds after executing one of the specified commands.
  196.       Enabled: false
  197.       Seconds: 10
  198.     # If the executed command is the same as the previous one the player got points for, it will be ignored.
  199.     IgnoreSimilarCommands: true
  200.   # Awards points when any of the specified items are crafted.
  201.   Crafting:
  202.     Enabled: true
  203.     # Format: ITEM_NAME:points
  204.     # 1.13 names should be used, even when not on that version, but you can still use the older names.
  205.     # Item names: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  206.     Items:
  207.    - DIAMOND_SWORD:10
  208.     - DIAMOND_PICKAXE:8
  209.     - DIAMOND_AXE:8
  210.     - DIAMOND_CHESTPLATE:9
  211.   # Awards points for every enchantment added to a player's item with the enchantment table.
  212.   Enchanting:
  213.     Enabled: true
  214.     Points: 5
  215.   # Removes points when a player dies.
  216.   PlayerDeath:
  217.     Enabled: true
  218.     PointsToTake: 25
  219.   # Awards points when a player consumes an item.
  220.   ItemConsume:
  221.     Enabled: true
  222.     Points: 5
  223.   # All actions related to plugins. These are disabled by default.
  224.   Plugins:
  225.     SuperLuckyBlock:
  226.       Enabled: false
  227.       # Awards points when a player breaks a luckyblock.
  228.       LBBreak:
  229.        # Set to 0 to disable.
  230.         Points: 10
  231.       # Awards points when a player gets a luckyblock while mining.
  232.       LuckyMining:
  233.        # Set to 0 to disable.
  234.         Points: 20
  235.     FactionsUUID:
  236.       Enabled: false
  237.       # Award points when a player creates a faction.
  238.       FactionCreate:
  239.        # Set to 0 to disable.
  240.         Points: 50
  241.       # Award points when a player claims new land.
  242.       LandClaim:
  243.        # Set to 0 to disable.
  244.         Points: 25
  245.     # Awards points when a player claims a land chunk.
  246.     Lands:
  247.       Enabled: false
  248.       Points: 25
  249.     # Awards points when claiming land with GriefPrevention.
  250.     GriefPrevention:
  251.       Enabled: false
  252.       Points: 20
  253.     # Awards points when a player votes.
  254.     NuVotifier:
  255.       Enabled: false
  256.       Points: 50
  257.     ASkyBlock:
  258.      # Awards points when a player completes a challenge.
  259.       ChallengeComplete:
  260.         Enabled: false
  261.         Points: 20
  262.       # Awards points when a player creates a new island.
  263.       NewIsland:
  264.         Enabled: false
  265.         Points: 40
  266.  
  267. Messages:
  268.   Balance: "You currently have %amount% points."
  269.   BegNoPoints: "Nope, no points for you this time!"
  270.   BegPoints: "Congrats, you got %amount% points!"
  271.   Converted: "Your points have been converted into rewards!"
  272.   DailyReward: "You collected your daily reward of %amount% points."
  273.   PointsAdded: "%amount% points have been added to your account. You have %total% points now."
  274.   PointsRemoved: "%amount% points have been removed from your account. You have %total% points now."
  275.   PointsReset: "Your balance has been reset."
  276.   NoPermission: "You don't have the permission to execute this command."
  277.   WaitUntilBeg: "You have to wait %timeleft% before you can beg again."
  278.   WaitForDaily: "Your daily reward isn't ready! You have to wait %timeleft% before it's ready!"
  279.   WrongUsage: "Wrong command usage! Please see /actionpoints help for the correct usage."
  280.   CommandNotFound: "Couldn't find the command you specified. Please use /actionpoints help for help."
  281.   TriviaRight: "You chose the right answer! You earned %amount% points."
  282.   TriviaWrong: "You chose the wrong answer... You lost %amount% points."
  283.   WaitForTrivia: "You need to wait %timeleft% before you can do another trivia question."
  284.  
  285. Startup:
  286.   CheckForUpdate: TRUE
  287. # Prints a lot more messages to console.
  288. # Should only be enabled when I ask to.
  289. DebugMessages: false
Advertisement
Add Comment
Please, Sign In to add comment