let's make an add-on, activation turbo mode (hold e or mouse buttons to press 30 times every second)
make this happen
make a script function that continuously spams this;
UseSprayCan(1);
UseSprayCan(0);
when holding down a key
i copied that fast wrench/hammer/print script :(
$remapDivision[$remapCount] = "Super Rapid Click";
$remapName[$remapCount] = "Hold to use";
$remapCmd[$remapCount] = "toggleSpam";
$remapCount++;
function toggleSpam(%value)
{
if(%value)
{
lol();
}
else
{
cancel($Lol::Schedule);
}
}
function lol()
{
UseSprayCan(1);
UseSprayCan(0);
$Lol::Schedule = schedule(33,0,lol);
}
might have been nerfed
you can make it faster by executing more functions at once. idk how