From 3949b874d1a178ff131a1ff4a0855fdf65c8ddc7 Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Thu, 29 Aug 2024 15:56:06 -0500 Subject: More phrase --- src/screen.c | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'src/screen.c') diff --git a/src/screen.c b/src/screen.c index db34745..fa5bb28 100644 --- a/src/screen.c +++ b/src/screen.c @@ -51,6 +51,35 @@ static const char *phrases[] = { "POOL'S CLOSED", "I've been diagnosed with snaids", "My balls itch", + "We killin filez and shiit", + "lonix users BTFO once again", + "This space left intentionally blank", + "Thinking of a way out is self-centered at best", + "Searching for the punchline to an infinite jest?", + "Still learning what it means to feel", + "Killroy was NOT here", + "Go fuck yourself lmao", + "It's so over", + "We're so back", + "It never even began", + "Pepito they shot Trump", + "This shit ain't nothing to me man", + "I'm him, I will continue to be him", + "THERE ARE MOSQUITOS IN YOUR URETHRA, GET THEM OUT!!!", + "Something wicked this way comes", + "Schizo hour", + "Man I could really use some Chicken Bouillon rn", + "Fuck my digital footprint, I need a digital footjob", + "Having my weekly \"Ted was right\" moment", + "Why aren't you in the gym?", + "Proof?", + "I've gone completely mental", + "The rage consumes me", + "Go outside. Now.", + "Beautiful Day Sunny Morning", + "Fuck crypto all my homies hate crypto", + "stfu fedsmoker is my dad he'll eat you alive", + "Almost dog in hot car'd myself", // by @danielsprofile on telegram "Daniel Spears loves femboys", @@ -294,7 +323,7 @@ int main() { error(1, 0, "[VX-GAMBLEGROUND] Couldn't get max terminal size for some reason"); } - randomnum = randombytes_uniform(STATIC_ARRSIZE(phrases)); + randomnum = randombytes_uniform(STATIC_ARRSIZE(phrases) + 1); WINDOW *banner = create_banner(col, randomnum); init_items(items, menu_choices, STATIC_ARRSIZE(menu_choices), userfuncs); @@ -386,11 +415,13 @@ int main() { int spin(void *params) { struct params *p = (struct params *)params; + // Replace this with a proper game-over anim p->numspins -= 1; if(p->numspins < 0) { endwin(); error(1, 0, "[VX-GAMBLEGROUND] You ran out of spins! Game Over!"); } + char *newstr = NULL; if(asprintf(&newstr, "Spins: %d, Price: %d", p->numspins, p->price) < 0) { endwin(); -- cgit v1.2.3