Merge branch 'patch_githubtos' into 'master'

Remove content in violation of GitHub TOS

See merge request nullworks/cathook/cathook!1029
This commit is contained in:
TotallyNotElite 2020-07-15 19:25:16 +00:00
commit 1336d8c964
3 changed files with 2 additions and 30018 deletions

File diff suppressed because it is too large Load Diff

View File

@ -54,7 +54,6 @@
<Option name="Disable" value="0"/>
<Option name="Custom" value="1"/>
<Option name="Default" value="2"/>
<Option name="NCC - offensive" value="3"/>
<Option name="NCC - MLG" value="4"/>
</Select>
</LabeledObject>

View File

@ -29,39 +29,12 @@ const std::vector<std::string> builtin_default = { "Don't worry guys, I'm a garb
"I would insult %name%, but nature did a better job.",
"%name%, perhaps your strategy should include trying.",
"Some people get paid to suck, you do it for free, %name%.",
"%name%, I'd tell you to commit suicide, but then you'd have a kill.",
"You must really like that respawn timer, %name%.",
"If your main is %class%, you should give up.",
"Hey %name%, i see you can't play %class%. Try quitting the game.",
"%team% is filled with spergs",
"%name%@gmail.com to vacreview@valvesoftware.com\nFOUND CHEATER",
"\n☐ Not rekt\n ☑ Rekt\n ☑ Really Rekt\n ☑ Tyrannosaurus Rekt" };
const std::vector<std::string> builtin_nonecore_offensive = { "%name%, you are noob.",
"%name%, do you even lift?",
"%name%, you're a faggot.",
"%name%, stop cheating.",
"%name%: Mom, call the police - I've got headshoted again!",
"Right into your face, %name%.",
"Into your face, pal.",
"Keep crying, baby.",
"Faggot. Noob.",
"You are dead, not big surprise.",
"Sit down nerd.",
"Fuck you with a rake.",
"Eat a man spear, you Jamaican manure salesman.",
"Wallow in a river of cocks, you pathetic bitch.",
"I will go to heaven and you will be in prison.",
"Piss off, you poor, ignorant, mullet-wearing porch monkey.",
"Your Mom says your turn-ons consist of butthole licking and scat porn.",
"Shut up, you'll never be the man your mother is.",
"It looks like your face caught on fire and someone tried to put it out "
"with a fork.",
"You're so ugly Hello Kitty said goodbye to you.",
"Don't you love nature, despite what it did to you?"
};
const std::vector<std::string> builtin_nonecore_mlg = { "GET REKT U SCRUB", "GET REKT M8", "U GOT NOSCOPED M8", "U GOT QUICKSCOPED M8", "2 FAST 4 U, SCRUB", "U GOT REKT, M8" };
const std::string tf_classes_killsay[] = { "class", "scout", "sniper", "soldier", "demoman", "medic", "heavy", "pyro", "spy", "engineer" };
const std::string tf_teams_killsay[] = { "RED", "BLU" };
@ -78,10 +51,8 @@ std::string ComposeKillSay(IGameEvent *event)
source = &file.lines;
break;
case 2:
source = &builtin_default;
break;
case 3:
source = &builtin_nonecore_offensive;
source = &builtin_default;
break;
case 4:
source = &builtin_nonecore_mlg;