takayama-lily / oicq-guild

Tencent QQ Guild Protocol Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

oicq-guild

oicq guild plugin

Install:

npm i oicq-guild

Usage:

const { createClient } = require("oicq")
const { GuildApp } = require("oicq-guild")

// input with your account and password
const account = 0
const password = ""

// create oicq client
const client = createClient(account)
client.login(password)

// create guild app and bind it to an oicq client
const app = GuildApp.bind(client)

app.on("ready", function () {
  console.log("My guild list:")
  console.log(this.guilds)
})

app.on("message", e => {
  console.log(e)
  if (e.raw_message === "hello")
    e.reply(`Hello, ${e.sender.nickname}!`)
})

how to clear the slider captcha:

https://github.com/takayama-lily/oicq/wiki/01.使用密码登录-(滑动验证码教程)

protobuf分析工具:

https://protobuf-decoder.netlify.app
https://github.com/takayama-lily/unpack-tools

About

Tencent QQ Guild Protocol Library

License:Mozilla Public License 2.0


Languages

Language:TypeScript 92.2%Language:JavaScript 7.8%