掷骰子
扔骰子小工具。
使用
import nonebot
from nonebot . adapters . cqhttp import Bot as CQHTTPBot
nonebot . init ( _env_file = ".env" )
driver = nonebot . get_driver ()
driver . register_adapter ( "cqhttp" , CQHTTPBot )
nonebot . load_builtin_plugins ()
# load other plugins
nonebot . load_plugin ( "nonebot_plugin_7s_roll" )
nonebot . run ()
其中.env文件除了nonebot的常规配置项外,还有可添加以下配置属性(示例中的是替换值):
# 命令名(在 at 机器人时使用,
2022-05-23 14:46:05
9KB
Python
1