🥀!  𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </>
🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </>
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
:)
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
i see ok np
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
ooh
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
.
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
when i click in any button its saying no active player in this guild
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
plz listen
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
noo its not with gamecord
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
thats saying no active player in this guild
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
when i click in any button
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
i think thats not the error
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
ooh god :(
18 replies
DIAdiscord.js - Imagine an app
Created by 🥀! 𝘕𝘰𝘵𝘎𝘰𝘴𝘵 </> on 9/14/2024 in #djs-questions
button says no active player in this guild
const { Snake } = require('discord-gamecord');

module.exports = {
name: 'snake',
description: 'start a snake gane',
run: async ( message, args, client) => {
const Game = new Snake({
message: message,
isSlashGame: false,
embed: {
title: 'Snake Game',
overTitle: 'Game Over',
color: 'Blue',
},

emojis: {
board: ':black_large_square:',
food: ':apple:',
up: ':arrow_up:',
down: ':arrow_down:',
left: ':arrow_left:',
right: ':arrow_right:',

},
stopButton: 'stop',
timeoutTime: 60000,
snake: { head: ':green_circle:', body: ':green_square:', tail: ':green_circle:', over: ':skull:' },
food: [':apple:', ':grapes:', ':tangerine:', ':blueberries:', ':kiwi:', ':corn:', ':banana:'],
playerOnlyMessage: 'Only {player} can use these buttons.'
});

Game.startGame()
Game.on('gameOver', result => {
return;
})
}
}
const { Snake } = require('discord-gamecord');

module.exports = {
name: 'snake',
description: 'start a snake gane',
run: async ( message, args, client) => {
const Game = new Snake({
message: message,
isSlashGame: false,
embed: {
title: 'Snake Game',
overTitle: 'Game Over',
color: 'Blue',
},

emojis: {
board: ':black_large_square:',
food: ':apple:',
up: ':arrow_up:',
down: ':arrow_down:',
left: ':arrow_left:',
right: ':arrow_right:',

},
stopButton: 'stop',
timeoutTime: 60000,
snake: { head: ':green_circle:', body: ':green_square:', tail: ':green_circle:', over: ':skull:' },
food: [':apple:', ':grapes:', ':tangerine:', ':blueberries:', ':kiwi:', ':corn:', ':banana:'],
playerOnlyMessage: 'Only {player} can use these buttons.'
});

Game.startGame()
Game.on('gameOver', result => {
return;
})
}
}
this is the code
18 replies