Skip to content

SrWhale/disgames

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published