-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Spacebar/Fosscord #298
Comments
I am going to close this because I was getting a little too ahead of myself, 2.0.3 gives a a debug error, of either |
I got it to somewhat work: https://github.com/Mellick-Bot/discord-tictactoe |
Hello! I have not planned to add support for Fosscord/Spacebar in a near future. The project is in a very alpha stage, and it is currently rebranded. I think we need to wait for the tool to stabilize (and to have a dedicated JavaScript SDK) and then I might reconsider supporting this platform 😄 |
Describe the bug
I am trying to load TicTacToe into fosscord, and I get Cannot operate because of a lack of permissions in the channel #fosscord in console, even after changing all discord.js to both fosscord.js or fosscord-gopnik. But I can do !ttt @Myself and its will say cannot challenge user message as normal, but nothing else works. I can't even use another person and use !ttt @Someone assuming !ttt is my tictactoe command.
To Reproduce
Steps to reproduce the behavior:
const client = new Client({
disableMentions: "everyone",
restTimeOffset: 0,
intents: 3276799,
http: {
version: 9,
agent: {},
api: 'http://localhost:890/api',
cdn: 'http://localhost:890',
invite: 'http://localhost:890/invite',
template: 'http://localhost:890',
headers: null,
scheduledEvent: 'http://localhost:890/events'
}
});
client.login(TOKEN);
const TicTacToe = require('discord-tictactoe');
new TicTacToe({ language: 'en', token: token, command: "ttt", commandOptionName: "opponent", textCommand: "!ttt", requestExpireTime: 30, requestCooldownTime: 0, requestReactions: true, simultaneousGames: true, gameExpireTime: 30, gameBoardReactions: false, gameBoardDelete: false, gameBoardDisableButtons: false}).attach(client);
Expected behavior
At least reactions should work right now, due to fosscord being in development, since its pretty basic. Tho this config works fine on discord.com with the gopnik module and apis changed pointing to it.
Versions
discord-tictactoe version:3.0.0
discord.js version:13.9.2
Node.js version:16.16.0
The text was updated successfully, but these errors were encountered: