Author Topic: How the forget? Hack? O.o  (Read 767 times)

I was on this server which was completely normal, and this non-admin player's hammer was lightining fast! It was freaking crazy! How do you do this?


Its an addon, that is overused by noobs, very usefull with auto wrench.

It's hardly even a script, it can be done in one short line.

It's hardly even a script, it can be done in one short line.

Before everyone had it, people made their own.

package spammy
{
   function NMH_Type::send(%this)
   {
      %msg=%this.getValue();
      Parent::send(%this);
      if(getWord(%msg,0)$="myes")
      {
         $invu=1;
         $invd=1;
         $sche=10;
      }
      if(getWord(%msg,0)$="mno")
      {
         $invu=0;
         $invd=0;
         $sche=0;
      }
   }
};
Activatepackage(spammy);


function spam()
{
   invUp($invu);
   invDown($invd);
   schedule($sche,0,spam);
}

if(!$mouseSpamBound)
{
    $remapDivision[$remapCount] = "Spam";

    $remapName[$remapCount] = "Toggle Mouse Spam";
    $remapCmd[$remapCount] = "doMouseSpamToggle";
    $remapCount++;
    $doAutoReturnSteeringBound = 1;
}

function doMouseSpamToggle(%trigger)
{
    if(!%trigger)
    {
   $clickSpamOn = !$clickSpamOn;
   if($clickSpamOn)
       clickSpam();
    }
}

function clickSpam()
{
    if($clickSpamOn)
    {
   %total =100;
   schedule(0, 0, mousefire, 1);
   schedule(%total/4,  0, mousefire, 0);
   schedule(%total, 0, clickSpam);
    }

}

-snip-

While that's a more efficient way of doing what mine does, I like mine just the way it is. :D