
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
owo-counting
Advanced tools
A basics plugin to create and allow track counting for yours OwO of your discord bot
A basics plugin to create counting OwO of yours bot and monitoring OwO Community guild.
This package npm is still beta, and i'm developer this npm will work hard to maintening. Thanks, enjooyyy... - Devin#3583
if your bot using discord.js, you can find more example here
const { Client } = require('discord.js');
const client = new Client({ intents: ['GUILDS', 'GUILD_MESSAGES'] });
const { Counting } = require('owo-counting');
const counting = new Counting(client, {
custom_prefix: 'w', // optional custom prefix OwO bot on your server. but if it doesn't exist, you can delete this line
});
/* Discord.Js Event */
client.on('ready', () => console.log(`Logged in ${client.user.tag}`));
client.on('messageCreate', (message) => {
if (message.author.bot) return;
counting.create(message, {
reminder: {
owo: true, // enable reminders owo. dIsable = false
hunt: true, // enable reminders hunt. disable = false
battle: true, // enable reminders battle. disable = false
}
}); // creating counting and done work. EZ?
// handle message for your bot here
});
/* Counting Event */
client.on('countReady', () => console.log(`Counting is Ready! now ${counting.readyAt}`));
client.on('countCreate', (create) => {
// create: response = { type: 'owo/hunt/battle', user: message.author, guild: message.guild, message: message }
console.log(`${create.user.tag} has typing ${create.type}, coldowns for this type has active`);
// then is your PR, however you must handle some to save counts number . like a to database
});
client.on('countReset', (reset) => {
// reset: response = { type: 'DAILY/WEEKLY/MONTHLY', count: counting };
console.log(`${reset.type} has Refreshing at ${reset.resetAt.toLocaleTimeString()}`);
});
FAQs
A basics plugin to create and allow track counting for yours OwO of your discord bot
The npm package owo-counting receives a total of 0 weekly downloads. As such, owo-counting popularity was classified as not popular.
We found that owo-counting demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.