discord.js-tictactoe
v1.0.2
Published
A discord.js module to play TicTacToe
Downloads
21
Readme
discord.js-tictactoe
##This package allows your bot to have a tic tac toe game
##Example code
const Discord = require("discord.js")
const client = new Discord.Client()
const ttt = require("discord.js-tictactoe")
const prefix = "!"
const embed_color = "#ff00aa"
const start_cmd = "ttt"
ttt.run(client, prefix, embed_color, start_cmd)
client.login("token")