🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

oicq-guild

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oicq-guild

guild plugin for oicq

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
42
16.67%
Maintainers
1
Weekly downloads
 
Created
Source

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.使用密码登录-(滑动验证码教程)

FAQs

Package last updated on 11 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts