Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
before UPD13
Browse files Browse the repository at this point in the history
  • Loading branch information
StormAxs committed Mar 3, 2024
1 parent c492681 commit aa1ee67
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/game/client/components/menus_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3523,7 +3523,10 @@ void CMenus::RenderSettingsStA(CUIRect MainView)
Left.HSplitTop(20.f, &Button, &Left);
if(DoButton_CheckBox(&g_Config.m_ClRainbow, Localize("Rainbow Tee"), g_Config.m_ClRainbow, &Button))
g_Config.m_ClRainbow ^= 1;
if(g_Config.m_ClRainbow == 1)
Left.HSplitTop(20.f, &Button, &Left);
if(DoButton_CheckBox(&g_Config.m_ClRainbowHook, Localize("Rainbow Hook"), g_Config.m_ClRainbowHook, &Button))
g_Config.m_ClRainbowHook ^= 1;
if(g_Config.m_ClRainbow == 1 || g_Config.m_ClRainbowHook == 1)
{
Left.HSplitTop(20.f, &Button, &Left);
UI()->DoScrollbarOption(&g_Config.m_ClRainbowSpeed, &g_Config.m_ClRainbowSpeed, &Button, Localize("Rainbow Speed"), 0, 100, &CUI::ms_LinearScrollbarScale, 0u, "%");
Expand Down
42 changes: 41 additions & 1 deletion src/game/client/components/menus_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,31 @@ std::vector<std::string> quotes = {
"melo melo melooon",
":gigachad:",
"-Dummygod was here",
"PL is not poland, is PlantKnight",
"Im so in love with ddnet code c:",
"Loving Ayako",
"deen>all!!!",
"Blocker<all",
"Block is nuts, don't play it",
"Also try KoG",
"Also try BlockWords",
"Also try FNG",
"Also try to touch some grass",
"chillin'",
"Our old party was Kao, Draggory, Ayako, Tokly, -StormAx",
"first -StormAx name is - NEDEX",
"Why tf you are staring at me? >:C",
"Bro i love this game so much",
"testtext",
"220km/h :wheelchair:",
"YEP CLAN on top;p",
"no sex ;c",
"still no sex ;c",
"and still no sex ;c",
"pepega xD",
"Go play Luxis",
"Go play Stronghold 4",
"AOE is not a YT guy, its splash DMG",
"VAMO VER QM DA MAIS O RABO, PRA VER SE EU NUM GANHO!",
"muhehehehe",
"10/10",
Expand All @@ -76,6 +101,22 @@ std::vector<std::string> quotes = {
"SpinbrosTV... you'r onto something, you'r onto something man",
"Also try M-Client v3 :D",
"Choo-Choo",
"Hi Atsuko!",
"pinuuuuuuuu!",
"n9",
"gamer",
"Inner Sillyness",
"Better then S-Client",
"Im am the storm that is approaching!",
"Dev love Lukov so much<3",
"DDnet moderator with most bans - IZA 12k bans",
"Mewing insead of Meowing",
"Prepare to suffer",
"Did you saw ddnet describtion in Steam?",
"allleeeeeee, hopa!",
"std::string GetRandomQuote()",
"there's 0.0001% to get special rainbow text, gl^^",
"https://open.spotify.com/track/1SQDvOrbSykg0lP5y7EQ8o?si=a002ae00a4eb4935",
"Super rare text you might see once in your life",


Expand Down Expand Up @@ -315,7 +356,6 @@ void CMenus::RenderStartMenu(CUIRect MainView)
dbg_msg("Quotes", "%s", randomQuote.c_str());
}


if(!str_comp(randomQuote.c_str(), "Super rare text you might see once in your life"))
{
ColorRGBA color = color_cast<ColorRGBA>(ColorHSVA(round_to_int(LocalTime() * 25) % 255 / 255.f, 1.f, 1.f));
Expand Down

0 comments on commit aa1ee67

Please sign in to comment.