Updated readme, slightly modified help behavior.
This commit is contained in:
parent
101eb70eae
commit
f17455a505
27
README.md
27
README.md
@ -11,11 +11,10 @@ otouto is free software; you are free to redistribute it and/or modify it under
|
|||||||
|
|
||||||
| For Users | For Coders |
|
| For Users | For Coders |
|
||||||
|:----------------------------------------------|:------------------------------|
|
|:----------------------------------------------|:------------------------------|
|
||||||
| [Setup](#setup) | [Introduction](#introduction) |
|
| [Setup](#setup) | [Plugins](#plugins) |
|
||||||
| [Control plugins](#control-plugins) | [Plugins](#plugins) |
|
| [Control plugins](#control-plugins) | [Bindings](#bindings) |
|
||||||
| [Group Administration](#group-administration) | [Bindings](#bindings) |
|
| [Group Administration](#group-administration) | [Output style](#output-style) |
|
||||||
| [List of plugins](#list-of-plugins) | [Output style](#output-style) |
|
| [List of plugins](#list-of-plugins) | [Contributors](#contributors) |
|
||||||
| | [Contributors](#contributors) |
|
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
You _must_ have Lua (5.2+), luasocket, luasec, multipart-post, and dkjson installed. You should also have lpeg, though it is not required. It is recommended you install these with LuaRocks.
|
You _must_ have Lua (5.2+), luasocket, luasec, multipart-post, and dkjson installed. You should also have lpeg, though it is not required. It is recommended you install these with LuaRocks.
|
||||||
@ -194,9 +193,6 @@ Additionally, antiflood can be configured to automatically ban a user after he h
|
|||||||
|
|
||||||
* * *
|
* * *
|
||||||
|
|
||||||
## Introduction
|
|
||||||
####todo
|
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
otouto uses a robust plugin system, similar to yagop's [Telegram-Bot](http://github.com/yagop/telegram-bot).
|
otouto uses a robust plugin system, similar to yagop's [Telegram-Bot](http://github.com/yagop/telegram-bot).
|
||||||
|
|
||||||
@ -205,13 +201,14 @@ Most plugins are intended for public use, but a few are for other purposes, like
|
|||||||
A plugin can have five components, and two of them are required:
|
A plugin can have five components, and two of them are required:
|
||||||
|
|
||||||
| Component | Description | Required? |
|
| Component | Description | Required? |
|
||||||
|:----------------|:---------------------------------------------|:----------|
|
|:------------------|:---------------------------------------------|:----------|
|
||||||
| plugin:action | Main function. Expects `msg` table as an argument. | Y |
|
| `plugin:action` | Main function. Expects `msg` table as an argument. | Y |
|
||||||
| plugin.triggers | Table of triggers for the plugin. Uses Lua patterns. | Y |
|
| `plugin.triggers` | Table of triggers for the plugin. Uses Lua patterns. | Y |
|
||||||
| plugin:init | Optional function run when the plugin is loaded. | N |
|
| `plugin:init` | Optional function run when the plugin is loaded. | N |
|
||||||
| plugin:cron | Optional function to be called every minute. | N |
|
| `plugin:cron` | Optional function to be called every minute. | N |
|
||||||
| plugin.command | Basic command and syntax. Listed in the help text. | N |
|
| `plugin.command` | Basic command and syntax. Listed in the help text. | N |
|
||||||
| plugin.doc | Usage for the plugin. Returned by "/help $command". | N |
|
| `plugin.doc` | Usage for the plugin. Returned by "/help $command". | N |
|
||||||
|
| `plugin.error` | Plugin-specific error message; false for no message. | N |
|
||||||
|
|
||||||
The `bot:on_msg_receive` function adds a few variables to the `msg` table for your convenience. These are self-explanatory: `msg.from.id_str`, `msg.to.id_str`, `msg.chat.id_str`, `msg.text_lower`, `msg.from.name`.
|
The `bot:on_msg_receive` function adds a few variables to the `msg` table for your convenience. These are self-explanatory: `msg.from.id_str`, `msg.to.id_str`, `msg.chat.id_str`, `msg.text_lower`, `msg.from.name`.
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ function help:action(msg)
|
|||||||
if not input then
|
if not input then
|
||||||
local res = utilities.send_message(self, msg.from.id, help_text, true, nil, true)
|
local res = utilities.send_message(self, msg.from.id, help_text, true, nil, true)
|
||||||
if not res then
|
if not res then
|
||||||
utilities.send_reply(self, msg, 'Please message me privately or [click here](http://telegram.me/' .. self.info.username .. '?start=help) for a list of commands.', true)
|
utilities.send_reply(self, msg, 'Please [message me privately](http://telegram.me/' .. self.info.username .. '?start=help) for a list of commands.', true)
|
||||||
elseif msg.chat.type ~= 'private' then
|
elseif msg.chat.type ~= 'private' then
|
||||||
utilities.send_reply(self, msg, 'I have sent you the requested information in a private message.')
|
utilities.send_reply(self, msg, 'I have sent you the requested information in a private message.')
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user