DailyWordGuess ============== A Wordle-like word guessing game with a single daily word for all users. .. toctree:: :maxdepth: 2 :titlesonly: :caption: RPC Categories RPCS ---- .. function:: DailyWordGuess.getWordList() Get a list of all the possible words **Returns:** ``List`` (`List `__ | `String `__) - word list .. function:: DailyWordGuess.giveUp() Give up on the current game and learn the target word **Returns:** ``String`` (`String `__) - Target word of daily game .. function:: DailyWordGuess.guess(word: BoundedString<5, 5>) Guess the word. Returns a list where each item is the feedback for the corresponding character. Feedback is a "3" if the character is correct, "2" if it is correct but in the wrong place, and "1" if the letter is not present in the word. **Arguments:** - ``word: BoundedString<5, 5>`` (`BoundedString `__) - Guess for this round .. function:: DailyWordGuess.timeRemaining() The amount of time in hours:minutes:seconds remaining to attempt the current day's puzzle **Returns:** ``String`` (`String `__) - Amount of time remaining .. function:: DailyWordGuess.triesRemaining() The number (out of six) of attempts at the daily puzzle remaining **Returns:** ``Number`` (`Number `__) - Number of attempts remaining