]> git.defcon.no Git - YAVote/blob - plugin.yml
Adding first version of YAVote code to Git repo
[YAVote] / plugin.yml
1 name: YAVote
2 main: no.defcon.yavote.YAVote
3 version: 1.4
4 description: Yet Another Vote plugin for Bukkit
5 website: http://minecraft.defcon.no/yavote
6 authors:
7 - Jon Langseth
8 commands:
9 vote:
10 description: Start or take part in a vote
11 usage: |
12 /<command> [parameter]
13 /<command> sun - Vote for fine weather
14 /<command> rain - Vote for rainy weather
15 /<command> day - Vote to set the time to morning
16 /<command> night - Vote to set the time to night
17 /<command> yes|no - Respond positive or negative to current vote
18 /<command> status - Return status of current vote
19 /<command> cancel - Cancel a running vote.
20 permissions:
21 vote.weather.start:
22 description: Gives access to starting new votes for sun/rain
23 vote.weather.respond:
24 description: Gives access to responding to a started sun/rain vote
25 vote.time.start:
26 description: Gives access to starting a vote for day/night
27 vote.time.respond:
28 description: Gives access to responding to a started nay/night vote
29 vote.cancel:
30 description: Gives access to immediately canceling a running vote
31 vote.status:
32 description: Gives access to information on running vote
33 vote.weather.*:
34 description: Gives vote.weather.start and .respond
35 children:
36 vote.weather.start: true
37 vote.weather.respond: true
38 vote.time.*:
39 description: Gives vote.time.start and .respond
40 children:
41 vote.time.start: true
42 vote.time.respond: true
43 vote.*:
44 description: Gives access to all vote commands/options.
45 children:
46 vote.time.*: true
47 vote.weather.*: true
48 vote.cancel: true
49 vote.status: true