📝🔥 编辑README、删除无效命令

This commit is contained in:
xtaodada 2020-08-16 20:55:42 +08:00
parent 00e59fe51a
commit be19b6b84a
No known key found for this signature in database
GPG Key ID: EE4DC37B55E24736
5 changed files with 64 additions and 37 deletions

View File

@ -21,15 +21,71 @@ Pagermaid 是一个用在 Telegram 的实用工具。
更新频道https://t.me/PagerMaid_Modify
原英文更新频道: https://t.me/PagerMaid
## 安装
等待补充
[Ubuntu 16.04 手动搭建教程](https://github.com/xtaodada/PagerMaid-Modify/wiki/Ubuntu-16.04-%E5%AE%89%E8%A3%85%E8%AF%A6%E8%A7%A3)
## 与原作者联络
[一键脚本](https://t.me/PagerMaid_Modify/58)
您可以在搭建完毕后在 Telegram 客户端上使用 -contact <message> 并点击链接进入通过 Pagermaid 自动打开的 PM ,如果您安装上出现了问题,请通过 [stykers@stykers.moe](mailto:stykers@stykers.moe) 给我发电子邮件,或在 Telegram [@KatOnKeyboard](https://t.me/KatOnKeyboard) 上给我发消息。
[Docker 脚本](https://t.me/PagerMaid_Modify/60)
# 对存在使用本项目用户群组的提醒
由于本项目需要响应账号通过其他客户端发出的命令,所以在本项目正常运行时,可能使用下列信息:
- 用户信息
- 姓
- 名
- 简介
- 头像以及历史头像
- 用户名
- 用户id
- 共同群组
- 官方认证状态
- 受限制状态
- 用户类型
- 群组信息
- 标题
- 群组类型
- 群组id
- 回复消息id
- 用户名
- 频道信息
- 标题
- 用户名
- 频道id
- 消息id
- 消息发送者(如果有的话)
- 文本
- 文件
- 图片
- 贴纸
以及会污染群组的操作记录,请群主或管理员提前声明禁止使用。如提醒不听,本项目组也没有办法,谁让这代码是开源的呢(
# 隐私政策
您在使用本项目代码时即表示您已经同意本隐私协议并且允许我们以评估负载和修复代码的目的记录您 bot 的在线状态和报错文件。
除可能使用的信息之外,我们不会记录与收集任何信息。
本项目代码完全遵循此隐私政策,您可以随时在此项目中审查我们的源代码。
# 免责声明
本项目无法承诺 `userbot` 行为不会被 `telegram` 官方滥权,也无法承诺所有功能能在自建项目上成功运行。
使用 `userbot` 所带来的损失或可能产生的任何责任由搭建者自行承担。
# 建议
欢迎您加入 [本项目支持群](https://t.me/PagerMaid_Modify/3) ,对于本项目用户,我们通常情况下可在支持群中予以提供搭建和使用帮助。
# 特别提醒
由于 userbot 的特殊性,请不要相信任何能够免费提供服务器给您搭建的人。
尤其是需要保护好 `pagermaid.session` ,任何拥有此文件的人都可以进行包括修改二次验证密码、更改手机号等操作。
# 特别感谢

View File

@ -170,7 +170,7 @@ async def highlight(context):
async def handle_failure(context, target_file_path):
await context.edit("出错了呜呜呜 ~ 请向原作者报告此问题。")
await context.edit("出错了呜呜呜 ~ 请报告此问题。")
try:
remove("result.png")
remove(target_file_path)

View File

@ -198,6 +198,7 @@ async def hitokoto(context):
break
except:
continue
hitokoto_type = ''
if hitokoto_json['type'] == 'a':
hitokoto_type = '动画'
elif hitokoto_json['type'] == 'b':
@ -223,17 +224,3 @@ async def hitokoto(context):
elif hitokoto_json['type'] == 'l':
hitokoto_type = '抖机灵'
await context.edit(f"{hitokoto_json['hitokoto']} - {hitokoto_json['from']}{str(hitokoto_type)}")
@listener(is_plugin=False, outgoing=True, command="source",
description="显示原始 PagerMaid git 存储库的URL。")
async def source(context):
""" Outputs the git repository URL. """
await context.edit("https://git.stykers.moe/scm/~stykers/pagermaid.git")
@listener(is_plugin=False, outgoing=True, command="site",
description="显示原始 PagerMaid 项目主页的URL。")
async def site(context):
""" Outputs the site URL. """
await context.edit("https://katonkeyboard.moe/pagermaid.html")

View File

@ -2,7 +2,7 @@ from time import time
from uuid import uuid1
from os.path import exists
from requests import get
from pagermaid import bot, working_dir
from pagermaid import working_dir
from pagermaid.listener import listener

View File

@ -117,22 +117,6 @@ async def trace(context):
await context.edit("无效的参数。")
@listener(is_plugin=False, outgoing=True, command="contact",
description="向 Kat 发送消息。",
parameters="<message>")
async def contact(context):
""" Sends a message to Kat. """
await context.edit("请点击 `[这里](https://t.me/PagerMaid_Modify)` 进入.",
parse_mode="markdown")
message = "Hi, I would like to report something about PagerMaid."
if context.arguments:
message = context.arguments
await context.client.send_message(
503691334,
message
)
@listener(is_plugin=False, outgoing=True, command="chat",
description="加入 Pagermaid-Modify 用户群。")
async def contact_chat(context):