Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Latest commit

 

History

History
357 lines (258 loc) · 9.46 KB

pack.md

File metadata and controls

357 lines (258 loc) · 9.46 KB

ColorMirai

返回

如果你插件没有设置运行QQ,则需要填写qq

机器人发送给插件

public long id { get; set; }
public string name { get; set; }
  • id:发送给的号码
  • name:图片UUID
什么都没有
public MemberPermission now { get; set; }
public MemberPermission old { get; set; }
public long id { get; set; }
  • now:当前权限
  • old:旧的权限
  • id:群号
public long eventid { get; set; }
public long id { get; set; }
public long fid { get; set; }
  • eventid:事件ID
  • id:群号
  • fid:邀请人QQ号
public long id { get; set; }
  • id:群号
public long id { get; set; }
public long fid { get; set; }
  • id:群号
  • fid:邀请人QQ
public long id { get; set; }
  • id:群号
public long id { get; set; }
public long fid { get; set; }
  • id:群号
  • fid:执行人QQ
public long id { get; set; }
public long fid { get; set; }
public int time { get; set; }
  • id:群号
  • fid:执行人QQ
  • time:禁言时间
public string message { get; set; }
  • message:离线原因
public string message { get; set; }
public string title { get; set; }
  • message:离线原因
  • title:标题
什么都没有
什么都没有
public string message { get; set; }
  • message:原因消息
public long id { get; set; }
public long fid { get; set; }
  • id:群号
  • fid:执行人QQ
public long id { get; set; }
public string nick { get; set; }
  • id:好友QQ号
  • nick:昵称
public string url { get; set; }
public long id { get; set; }
  • url:图片url
  • id:好友QQ号
public long id { get; set; }
  • id:好友QQ号
public List<string> message { get; set; }
public long id { get; set; }
public bool res { get; set; }
public string error { get; set; }
  • message:消息
  • id:好友QQ号
  • res:是否成功发送
  • error:错误消息
public List<string> message { get; set; }
public long id { get; set; }
  • message:消息
  • id:好友QQ号
public long id { get; set; }
public string old { get; set; }
public string now { get; set; }
  • id:好友QQ号
  • old:旧的昵称
  • now:新的昵称
public long id { get; set; }
public long fid { get; set; }
public bool old { get; set; }
public bool now { get; set; }
  • id:群号
  • fid:好友QQ号
  • old:旧的状态
  • now:新的状态
public long id { get; set; }
public bool old { get; set; }
public bool now { get; set; }
  • id:群号
  • old:旧的状态
  • now:新的状态
public long id { get; set; }
public long fid { get; set; }
public bool old { get; set; }
public bool now { get; set; }
  • id:群号
  • fid:执行人QQ号
  • old:旧的状态
  • now:新的状态
public long id { get; set; }
public long fid { get; set; }
public string old { get; set; }
public string now { get; set; }
  • id:群号
  • fid:执行人QQ号
  • old:旧的状态
  • now:新的状态
public long id { get; set; }
public bool res { get; set; }
public List<string> message { get; set; }
public string error { get; set; }
  • id:群号
  • res:是否发送成功
  • message:发送的消息
  • error:错误消息
public long id { get; set; }
public bool res { get; set; }
public List<string> message { get; set; }
public string error { get; set; }
  • id:群号
  • res:是否发送成功
  • message:发送的消息
  • error:错误消息
public long id { get; set; }
public List<string> message { get; set; }
  • id:群号
  • message:消息
public long id { get; set; }
public long fid { get; set; }
public bool old { get; set; }
public bool now { get; set; }
  • id:群号
  • fid:执行人QQ号
  • old:旧的状态
  • now:新的状态
public long id { get; set; }
public long fid { get; set; }
public string old { get; set; }
public string now { get; set; }
  • id:群号
  • fid:执行人QQ号
  • old:旧的名字
  • now:新的名字

待补充.....

插件发送给机器人

插件第一次连接需要发送一个数据包来注册所监听事件的包

public string Name { get; set; }
public List<byte> Reg { get; set; }
public List<long> Groups { get; set; }
public List<long> QQs { get; set; }
public long RunQQ { get; set; }
  • Name:插件名字
  • Reg:监听的包,只有标注(事件)的包才会被监听
  • Groups:只监听的群号,可以为null
  • QQs:只监听的QQ号,可以为null
  • RunQQ:插件运行的机器人QQ号,可以为0

netty装拆包