Rainbow Suit

Author Topic: Rainbow Suit  (Read 2075 times)

Can somebody give me the link to the rainbow flashing suit

Topic
File (Put in Add-Ons/Client)


Next time, use the button, I searched for about three seconds with "Funky Shirt" and it was the second one in the results.

What do i do all it does is just words and crap

Extract to were SpaceGuy said press CTRL+O ingame go to the control tab go to the very bottom of controls set a key for your Funk Shirt click done, press the set key for Funky Shirt.

-.::This has been another boring installment of Shadow Ninja!::.-[/i]
[/b][/color]

this is all what it says when i press the link: //Funky Shirt
//by boomlinde
// You can change/add body parts if you want...

if (!$FunkyBindings)
{
   $remapDivision[$remapCount] = "Funky Shirt";
   $remapName[$remapCount] = "Activate/Deacticate";
   $remapCmd[$remapCount] = "FunkyShirtToggle";
   $remapCount++;
   $FunkyBindings=true;
}

$FunkyShirtCount=0;
$FunkyShirtFlag=0;
$FunkyShirtTemp=$pref::Player::TorsoColor;
function FunkyShirtToggle(%notdepressed)
{
    if (!%notdepressed) return;
    if($FunkyShirtFlag==0)
    {
        $FunkyShirtFlag=1;
        $FunkyShirtTemp=$pref::Player::TorsoColor;
        FunkyShirtLoop();
    } else
    if($FunkyShirtFlag==1)
    {
        $FunkyShirtFlag=0;
        cancel($FunkyShirt);
        $pref::Player::TorsoColor=$FunkyShirtTemp;
        Avatar_Done();
    }
}

function FunkyShirtLoop()
{
        if($FunkyShirtCount > 63) $FunkyShirtCount=0;
        //Grejer
        $R=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0);
        $G=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0+21.0);
        $B=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0+42.0);
        $pref::Player::TorsoColor= $R @ " " @ $G @ " " @ $B @ " 1.0";
        Avatar_Done();
        $FunkyShirtCount++;
        $FunkyShirt=schedule(100,0,FunkyShirtLoop);
}

this is all what it says when i press the link: //Funky Shirt
//by boomlinde
// You can change/add body parts if you want...

if (!$FunkyBindings)
{
   $remapDivision[$remapCount] = "Funky Shirt";
   $remapName[$remapCount] = "Activate/Deacticate";
   $remapCmd[$remapCount] = "FunkyShirtToggle";
   $remapCount++;
   $FunkyBindings=true;
}

$FunkyShirtCount=0;
$FunkyShirtFlag=0;
$FunkyShirtTemp=$pref::Player::TorsoColor;
function FunkyShirtToggle(%notdepressed)
{
    if (!%notdepressed) return;
    if($FunkyShirtFlag==0)
    {
        $FunkyShirtFlag=1;
        $FunkyShirtTemp=$pref::Player::TorsoColor;
        FunkyShirtLoop();
    } else
    if($FunkyShirtFlag==1)
    {
        $FunkyShirtFlag=0;
        cancel($FunkyShirt);
        $pref::Player::TorsoColor=$FunkyShirtTemp;
        Avatar_Done();
    }
}

function FunkyShirtLoop()
{
        if($FunkyShirtCount > 63) $FunkyShirtCount=0;
        //Grejer
        $R=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0);
        $G=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0+21.0);
        $B=0.5+0.5*mSin($FunkyShirtCount*3.14/16.0+42.0);
        $pref::Player::TorsoColor= $R @ " " @ $G @ " " @ $B @ " 1.0";
        Avatar_Done();
        $FunkyShirtCount++;
        $FunkyShirt=schedule(100,0,FunkyShirtLoop);
}

Copy the link words into a notepad document and put the notepad were SpaceGuy said to put it. Then do mah tutorial and you has yourself a funky shirt.


Wait, you'll have to save the notepad document with the ending .cs so when you're naming it just call it rainbowsuit.cs or whatever.