Skip to content

Commit

Permalink
ok i swear if android doesnt work after this im going to quit geode
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Mar 25, 2024
1 parent 23a9d88 commit c0a5040
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
40 changes: 20 additions & 20 deletions resources/technoblade.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Skyblock teaches us that no matter how ridiculous the odds may seem, within us resides the power to overcome these challenges and achieve something beautiful. And one day, we'll look back at where we started, and be amazed by how far we've come.
WE WIN THESE!
Technoblade never dies!
I'M SO GOOD AT VIDEO GAMES!!!
I can tryhard any game.
Stay in school, kids. It makes you better at PvP.
For my part, I've realized that rank number 1 isn't an achievement. It's a prison which forces you to dedicate your life to defending a temporary title.
alright guys if my mic is muted say canada
All part of my master plan!
For reference, it took me three attempts to put on my shirt.
one of us, one of us, one of us, one of us!
I understand now that it is only with a worthy rival that one can reach their fullest potential.
Most opportunities are created by luck. It takes skill to grasp those opportunities and turn it into success.
As you can see, my FPS is around 18 or so, which means we can definitely take this further.
First try, part two!
And now we're gonna win video games... with the power of friendship! And also fireballs.
All right, you know what? You tried. I'll give you that.
You see, back in high school when I didn't have a huge ego, a lesbian referred to me as 'actually pretty funny', and my ego has been coastin' ever since.
YEAH! ANYTHING IS POSSIBLE! THE SKY'S THE LIMIT! YOU CAN ACHIEVE ANYTHING!
If you wish to defeat me, train for another 100 years.
"Skyblock teaches us that no matter how ridiculous the odds may seem, within us resides the power to overcome these challenges and achieve something beautiful. And one day, we'll look back at where we started, and be amazed by how far we've come."
"WE WIN THESE!"
"Technoblade never dies!"
"I'M SO GOOD AT VIDEO GAMES!!!"
"I can tryhard any game."
"Stay in school, kids. It makes you better at PvP."
"For my part, I've realized that rank number 1 isn't an achievement. It's a prison which forces you to dedicate your life to defending a temporary title."
"alright guys if my mic is muted say canada"
"All part of my master plan!"
"For reference, it took me three attempts to put on my shirt."
"one of us, one of us, one of us, one of us!"
"I understand now that it is only with a worthy rival that one can reach their fullest potential."
"Most opportunities are created by luck. It takes skill to grasp those opportunities and turn it into success."
"As you can see, my FPS is around 18 or so, which means we can definitely take this further."
"First try, part two!"
"And now we're gonna win video games... with the power of friendship! And also fireballs."
"All right, you know what? You tried. I'll give you that."
"You see, back in high school when I didn't have a huge ego, a lesbian referred to me as 'actually pretty funny', and my ego has been coastin' ever since."
"YEAH! ANYTHING IS POSSIBLE! THE SKY'S THE LIMIT! YOU CAN ACHIEVE ANYTHING!"
"If you wish to defeat me, train for another 100 years."
6 changes: 4 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ int fps = -1;
std::ifstream file(pathRogers);
std::string technoblade;
while (std::getline(file, technoblade)) {
std::string tThePig = fmt::format("\"{}\"", technoblade);
quotes.push_back(tThePig);
quotes.push_back(technoblade);
} // technically i can write two one-time use boolean variables to allow people to toggle these things on and off as they please without the quotes adding themselves multiple times into the vector, but i'd rather add the "restart required" barrier just to be extra safe
}

Expand Down Expand Up @@ -265,6 +264,9 @@ class $modify(MyEndLevelLayer, EndLevelLayer) {
if (strcmp("BELIEVE", randomString) == 0) scale = 1.5f;
else if (strcmp("endTextLabel->setString(randomString.c_str(), true);", randomString) == 0) scale = 0.4f;
else if (scale > Mod::get()->getSettingValue<double>("maxScale")) scale = Mod::get()->getSettingValue<double>("maxScale");
#ifdef GEODE_IS_MOBILE
scale = scale * .85f;
#endif
endTextLabel->setScale(scale);
endTextLabel->setWidth(336.f); // width of end screen minus 20px

Expand Down

0 comments on commit c0a5040

Please sign in to comment.