Windows wrote:
Lol deadmonstor
The anticheat is buggy and breaks without a reason sometimes, I have known muffin for a long time and he always had good aim. Sometimes he had very lucky shots but that doesn’t mean he’s cheating.
Here have more
local hackerModeLetters = {};
local hackerModeLettersTable = {
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z",
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
"N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
"W",
"X",
"Y",
"Z",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"/",
"\\",
"!",
"$",
"%",
"&",
"(",
")",
"{",
"}",
}
local function paintHackerMode()
local maxDists = ScrW() / 5;
if(#hackerModeLetters < 1000) then
hackerModeLetters[#hackerModeLetters + 1] = {
-20,
5 * math.random(maxDists),
math.random(1, 20),
}
end
end
for k,v in next, hackerModeLetters do
surface.SetFont("BudgetLabel");
v[1] = v[1] + v[3];
if(v[1] >= ScrH()) then
table.remove(hackerModeLetters, k);
continue;
end
surface.SetTextColor(0, 255, 0);
surface.SetTextPos(v[2], v[1]);
surface.DrawText(hackerModeLettersTable[math.random(#hackerModeLettersTable)]);
end
end