Skip to content

Conversation

@DreamBoy65
Copy link
Contributor

C4 With slash.

SLASH USAGE:

const { SlashCommandBuilder } = require('@discordjs/builders');
const { ConnectFour } = require("djs-games")

module.exports = {
  name: "c4",
  data: new SlashCommandBuilder()
    .setName('c4')
    .setDescription('C4 game')
    .addUserOption((option) => 
      option
      .setName('user')
      .setDescription('The user to play')
      .setRequired(true)
                  ),
  run: async(client, interaction) => {

    let opp = interaction.options.get('user').value;

   console.log(opp)
    
  const game = new ConnectFour({
  message: interaction,
  player1: '🔴',
  player2: '🟡',
  opponent: opp,
    slash: true
    })
game.start()
    
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant