Personally not a fan of all of the new secretary pill, the minigame is very frustrating and hard for me, since im not a native english speaker and the sexy time is just not my personal taste but this is of course very subjective. But i think giving an option to change the minigame towards one, what everyone can do, no matter their english skills would decrease the frustration with this minigame quite a bit.
Also really looking forward to the next updates from the roadmap, they all sound really good for me
I've found a cheat for us non native english speakers. Works for eveyone, actually.
If we have a list with all english words, we can search for all 5 lettered words that match some letters we already know.
We can find such word list here:
You must be registered to see the links
Just download the
words.txt
file from that repository. To download it, click on the file name and, in the next page, click the download icon near the "Raw" and copy icons. It should be at the right hand side of the screen above the content that will actually not be shown because the file is too long.
In order to search in that file, we could use a program called
grep
, available with all linux distributions, available in mac OSX, and Windows by using windows subsystem for linux or cwyng or another thing that allows you to use Unix programs in Windows.
As an example, let's say we want to find all 5 lettered words starting with "r" and ending with "s", just like one of the twitter video examples.
Just open terminal and issue this command:
Code:
grep -E ^r...s$ /path/to/words.txt
this means: call program
grep
flagging
-E
meaning that an extended regular expression will be passed, and the expression is
^r...s$
, and the file to read is at
/path/to/words.txt
. That expression means a pattern that matches the start of a line (
^
), followed by letter
r
, followed by any 3 digits/symbols (
.
), followed by letter
s
, followed by the end of a line (
$
). As the file has each word in one line, this would perfectly match the following words:
races racks raffs rafts ragas rages ragis rag's raias rayas raids rails ray's rajas rajes rakes rakis rales ramps ram's ramus rands ranis ranks rants rapes rap's rares rases rasps rates ratos rat's raves raxes razes reads reaks reals reams reaps rears rebus recks redds redes redos reefs reeks reels reges reifs reins reles rends renes rents repas repos repps rests rexes rheas rials rib's rices ricks rides riels rifts rig's rykes riles rills rimes rim's rinds rynds rings rinks riots ryots ripes rises risks risus rites ritus roads roams roans roars robes rocks rod's roils roles rolls romps roods roofs rooks rooms ropes roses rotas rotes rotls rotos roues roups routs roves rubes rucks rudas rudds ruers ruffs rug's ruins rumps runes rungs runts ruses rusks rusts ruths rut's
Or we could even exclude some character we don't want by changing the pattern to
^r[a-z]{3}s$
. The change means that after the letter
r
, a character between letters
a
and
z
should follow, and such character should repeat exactly 3 times, then a letter
s
should follow. This doesn't match the words containing the apostrophe (
'
) character. The result becomes:
races racks raffs rafts ragas rages ragis raias rayas raids rails rajas rajes rakes rakis rales ramps ramus rands ranis ranks rants rapes rares rases rasps rates ratos raves raxes razes reads reaks reals reams reaps rears rebus recks redds redes redos reefs reeks reels reges reifs reins reles rends renes rents repas repos repps rests rexes rheas rials rices ricks rides riels rifts rykes riles rills rimes rinds rynds rings rinks riots ryots ripes rises risks risus rites ritus roads roams roans roars robes rocks roils roles rolls romps roods roofs rooks rooms ropes roses rotas rotes rotls rotos roues roups routs roves rubes rucks rudas rudds ruers ruffs ruins rumps runes rungs runts ruses rusks rusts ruths
Use your horniness state to learn more about regular expressions in case you want to improve the pattern and narrow down the search.
edited: I figured I could just copy the words from the html code.