Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.77 KB | None | 0 0
  1. VoteSites:
  2.  # VoteSite key
  3.   # Used for saving data for votesites
  4.   # Use a short name if you can
  5.   TopServers:
  6.    # Enable voteSite
  7.     # If false, votesite will not be loaded by plugin
  8.     # Default: false
  9.     Enabled: true
  10.    
  11.     # Display name of voting site
  12.     Name: 'TopServers'
  13.          
  14.     # Priority of this site
  15.     # Used for sorted list
  16.     # High prority, higher on the list
  17.     Priority: 5
  18.          
  19.     # The serviceName from the vote, has to be correct to work correctly
  20.     # Gotten from voting on the site (will be in console/log)
  21.     # Usually is the main part of the url(e.g. PlanetMinecraft.com), but not always
  22.     # See console when you vote (it will notify you if the plugin didn't find a votingsite matching the service site
  23.     ServiceSite: 'topservers.com'
  24.  
  25.     # vote url for /vote
  26.     # Format for this can be set in Format.yml
  27.     # Do not include colors here
  28.     # If you need to force a url set the url as this:
  29.     # VoteURL: '[Text="ANY TEXT TO CLICK ON HERE",url="URLHERE"]'
  30.     VoteURL: 'https://topservers.com/minecraft/in-513'
  31.  
  32.     # Time between votes in hours (used for /vote next)
  33.     # Most sites are 24 hours
  34.     VoteDelay: 24
  35.    
  36.     # Require waiting until votedelay time has pasted in order to accept vote
  37.     # Recommend: false
  38.     WaitUntilVoteDelay: false
  39.    
  40.     # Reset vote delay each day (for certain sites that do this)
  41.     # Recommend: false
  42.     VoteDelayDaily: false
  43.    
  44.     # If true, rewards can be executed offline (requires ForceOffline to be true in the reward)
  45.     # Setting this to true will execute the reward offline while the player is offline
  46.     # This basiclly disables offline voting if set to true, don't misinterpret this option
  47.     ForceOffline: false
  48.    
  49.     # VoteSite Material for some GUI's
  50.     # Removing this may result in an error, required on each site
  51.     Item:
  52.       Material: 'Nether_star'
  53.       Amount: 1
  54.  
  55.     # Rewards to give
  56.     # https://github.com/Ben12345rocks/AdvancedCore/wiki/Rewards
  57.     Rewards:
  58.      # Execute console commands
  59.       Commands:
  60.         Console:
  61.        - 'cc give physical voting 1 %Player%'
  62.         - 'broadcast &c%Player% &fjust voted and received &f1 &bCrate Key!'
  63.       # Send player a message
  64.       Messages:
  65.         Player: '&f Thanks for voting! You have received &c1 &bCrate Key&c!'
  66.   # Site 2 example
  67.    Minecraft-MP:
  68.    # Enable voteSite
  69.     # If false, votesite will not be loaded by plugin
  70.     # Default: false
  71.     Enabled: true
  72.    
  73.     # Display name of voting site
  74.     Name: 'Minecraft-MP'
  75.          
  76.     # Priority of this site
  77.     # Used for sorted list
  78.     # High prority, higher on the list
  79.     Priority: 5
  80.          
  81.     # The serviceName from the vote, has to be correct to work correctly
  82.     # Gotten from voting on the site (will be in console/log)
  83.     # Usually is the main part of the url(e.g. PlanetMinecraft.com), but not always
  84.     # See console when you vote (it will notify you if the plugin didn't find a votingsite matching the service site
  85.     ServiceSite: 'minecraft-mp.com'
  86.  
  87.     # vote url for /vote
  88.     # Format for this can be set in Format.yml
  89.     # Do not include colors here
  90.     # If you need to force a url set the url as this:
  91.     # VoteURL: '[Text="ANY TEXT TO CLICK ON HERE",url="URLHERE"]'
  92.     VoteURL: 'https://minecraft-mp.com/server/250399/vote/'
  93.  
  94.     # Time between votes in hours (used for /vote next)
  95.     # Most sites are 24 hours
  96.     VoteDelay: 24
  97.    
  98.     # Require waiting until votedelay time has pasted in order to accept vote
  99.     # Recommend: false
  100.     WaitUntilVoteDelay: false
  101.    
  102.     # Reset vote delay each day (for certain sites that do this)
  103.     # Recommend: false
  104.     VoteDelayDaily: false
  105.    
  106.     # If true, rewards can be executed offline (requires ForceOffline to be true in the reward)
  107.     # Setting this to true will execute the reward offline while the player is offline
  108.     # This basiclly disables offline voting if set to true, don't misinterpret this option
  109.     ForceOffline: false
  110.    
  111.     # VoteSite Material for some GUI's
  112.     # Removing this may result in an error, required on each site
  113.     Item:
  114.       Material: 'Nether_star'
  115.       Amount: 1
  116.  
  117.     # Rewards to give
  118.     # https://github.com/Ben12345rocks/AdvancedCore/wiki/Rewards
  119.     Rewards:
  120.      # Execute console commands
  121.       Commands:
  122.         Console:
  123.        - 'cc give physical voting 1 %Player%'
  124.         - 'broadcast &c%Player% &fjust voted and received &f1 &bCrate Key!'
  125.       # Send player a message
  126.       Messages:
  127.         Player: '&f Thanks for voting! You have received &c1 &bCrate Key&c!'
  128.       Messages:
  129.         Player: 'You voted'
  130.    
  131. # Reward for any site
  132. # Similar to AnySiteReward
  133. # This requires the site to be configured in order to get the reward.
  134. EverySiteReward: []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement