A script that helps you guess words in skribblio
for (const guessedWord of this.alreadyGuessed) { if (!this.closeWord.includes(word) && this.levenshteinDistance(word, guessedWord) === 1) return false;
}
maybe something like this would work in generate guesses? didn't test for bugs
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Can you add a feature?
If the message after your guess isn't "[guess] is close!" it removes suggested words that are close, since they can't be the correct guess