This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

disgames

1.0.2 • Public • Published

About

Disgames is a powerful Node.js module that allows you to easily play games in the discord using Discord.js module. Using the Discord API.

Installation

Node.js 16.9.0 or newer is required.

npm install disgames
yarn add disgames
pnpm add disgames

Easily example usage (model used for all games)

const { Client, GatewayIntentBits } = require('discord.js');

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

const { Two, Tic } = require('disgames');

client.on('ready', () => {
	console.log(`Logged in as ${client.user.tag}!`);
});

client.on('interactionCreate', async (interaction) => {
	if (!interaction.isCommand()) return;

	if (interaction.commandName === '2048') {
		new Two({
            interaction,
            size: 4
        }).play()
	}

    if(interaction.commandName === 'tictactoe') {
        new Tic({
            interaction,
            member: interaction.options.getMember('member_option_name')
        })
    };

    // Use this model to run all games
});

client.login('token');

Links

Package Sidebar

Install

npm i disgames

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

47.3 kB

Total Files

21

Last publish

Collaborators

  • srwhale