31
Music / What Convertor do you use?
« on: March 22, 2011, 05:01:03 PM »
What convertors do you guys use?
And how do your shorten your songs?
And how do your shorten your songs?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
I GIVE YOU!
The pyro....

datablock ShapeBaseImageData(greekhelmetImage)
{
shapeFile = "./GreekHelmet.dts";
emap = true;
mountPoint = $HeadSlot;
offset = "0 0 0.1";
eyeOffset = "0 0 10";
rotation = eulerToMatrix("0 0 0");
scale = "1 1 1";
doColorShift = false;
colorShiftColor = "50.000 50.000 50.000 255.000";
};
function serverCmdgreekhelmet(%client)
{
%player = %client.player;
if(isObject(%player))
{
if(%player.getMountedImage(2) $= nametoID(greekhelmetImage))
{
%player.unmountImage(2);
%client.applyBodyParts();
%client.applyBodyColors();
}
else
{
%player.unmountImage(2);
%player.mountImage(greekhelmetImage,2);
for(%i = 0;$hat[%i] !$= "";%i++)
{
%player.hideNode($hat[%i]);
%player.hideNode($accent[%i]);
}
}
}
}