# Objective
Guess your opponent's secret 4-digit number with unique digits.
# Setup
- Each player chooses a secret 4-digit number
- No repeated digits allowed
# Gameplay
- Players take turns guessing
- After each guess, you get feedback:
- Fame = correct digit in correct position
- Dot = correct digit in wrong position
# Example
Secret: 0348
Guess: 0123
Feedback: 1 Fame (0), 1 Dot (3)
# Winning
First to guess the number correctly (4 Fames) wins!
No followers yet
Once you ship this you can't edit the description of the project, but you'll be able to add more devlogs and re-ship it as you add new features!
I've made a discord bot for testing commands and permissions in javascript since im not used to making a bot from this language. I also made the SQLite3 tables to save the stats of players and current games going on. For now it's time to implement the logic of the commands.