]> git.defcon.no Git - YAVote/blob - plugin.yml
Removed debugging text. Seems to work OK, bumping version to 1.5
[YAVote] / plugin.yml
1 name: YAVote
2 main: no.defcon.yavote.YAVote
3 version: 1.5
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> storm - Vote for thunder-storm
16 /<command> day - Vote to set the time to morning
17 /<command> night - Vote to set the time to night
18 /<command> yes|no - Respond positive or negative to current vote
19 /<command> status - Return status of current vote
20 /<command> cancel - Cancel a running vote.
21 permissions:
22 vote.weather.start:
23 description: Gives access to starting new votes for sun/rain
24 vote.weather.respond:
25 description: Gives access to responding to a started sun/rain vote
26 vote.time.start:
27 description: Gives access to starting a vote for day/night
28 vote.time.respond:
29 description: Gives access to responding to a started nay/night vote
30 vote.cancel:
31 description: Gives access to immediately canceling a running vote
32 vote.status:
33 description: Gives access to information on running vote
34 vote.weather.*:
35 description: Gives vote.weather.start and .respond
36 children:
37 vote.weather.start: true
38 vote.weather.respond: true
39 vote.time.*:
40 description: Gives vote.time.start and .respond
41 children:
42 vote.time.start: true
43 vote.time.respond: true
44 vote.*:
45 description: Gives access to all vote commands/options.
46 children:
47 vote.time.*: true
48 vote.weather.*: true
49 vote.cancel: true
50 vote.status: true