Author Topic: Most useless addon you've seen?  (Read 5418 times)




Everyone who says rape mod is WRONG
Click it, it's the most useless mod ever
it literally puts accents on letters

thats it

package swagYolo
{
   function serverCmdMessageSent(%client,%msg)
   {
      if($pref::server::Swag)
      {
         %count = getWordCount(%msg);
         for(%i=0;%i<%count;%i++)
         {
            if(getRandom() > 0.5)
               %str = trim(%str SPC "swag");
            else
               %str = trim(%str SPC "yolo");
         }
         %msg = %str;
      }
      parent::serverCmdMessageSent(%client,%msg);
   }
};activatepackage(swagYolo);

function serverCmdToggleSwag(%client)
{
   if(!%client.isAdmin)
      return;
   $pref::server::Swag = !$pref::server::Swag;
   if($pref::server::Swag)
      talk(%client.name @ " enabled swag.");
   else
      talk(%client.name @ "  disabled swag.");
}





Yeah, the Chat Asciifyer looks like the most useless mod.


package Nothing
{
      return;
};
ActivatePackage(Nothing);


I win

Except that would syntax error.


package Nothing
{
      return;
};
ActivatePackage(Nothing);


I win
This would give a syntax error.