Plugin list

Poll

Provides a simple way to vote on answers to a question For example, this creates a poll:: @poll add "Is this a test?" "Yes" "No" "Maybe" The operation succeeded. Poll # 42 created. Creates a poll that can be voted on in this way:: @vote 42 Yes @vote 42 No @vote 42 No And results:: @poll results 2 votes for No, 1 vote for Yes, and 0 votes for Maybe Longer answers are possible, and voters only need to use the first word of each answer to vote. For example, this creates a poll that can be voted on in the same way:: @poll add "Is this a test?" "Yes totally" "No no no" "Maybe" The operation succeeded. Poll # 43 created. You can also add a number or letter at the beginning of each question to make it easier:: @poll add "Who is the best captain?" "1 James T Kirk" "2 Jean-Luc Picard" "3 Benjamin Sisko" "4 Kathryn Janeway" The operation succeeded. Poll # 44 created. @vote 42 1 @vote 42 4 @vote 42 4

Command Help
addPoll add [<channel>] <question> <answer1> [<answer2> [<answer3> [...]]]
Creates a new poll with the specified <question> and answers on the <channel>. The first word of each answer is used as its id to vote, so each answer should start with a different word. <channel> is only necessary if this command is run in private, and defaults to the current channel otherwise.
closePoll close [<channel>] <poll_id>
Closes the specified poll.
listPoll list [<channel>]
Lists open polls in the <channel>.
resultsPoll results [<channel>] <poll_id>
Returns the results of the specified poll.
votePoll vote [<channel>] <poll_id> <answer_id>
Registers your vote on the poll <poll_id> as being the answer identified by <answer_id> (which is the first word of each possible answer).