226
Off Topic / Can anyone help make this picture into an avatar?
« on: January 18, 2013, 11:43:50 AM »
Please?
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.

Delayyes. It took me 2 hour to finish.
0 onActivate -> Client -> Center -> 5
1000 onActivate -> Client -> Center -> 4
2000 onActivate -> Client -> Center -> 3
3000 onActivate -> Client -> Center -> 2
4000 onActivate -> Client -> Center -> 1
HERE it is with the client sided part.got it.
I made that from scratch.Oh. Locking.
Do you mean countdown as in 5, 4, 3, 2, 1?Yes
Strange, looking into it now..Thank you. I will make brick more later.
EDIT: this goes beyond just a simple spacing error than I originally thought, might take a bit to troubleshoot..
EDIT2: Oh man, I should probably just recode this, its so messy.
For now, just use this.
http://dl.dropbox.com/u/22217440/4x4x1round.blb
Should be commandToServer('SentModelHat');add (%client)?
ModelHat.cs
datablock ShapeBaseImageData(ModelHatImage)
{
shapeFile = "./Model.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 = "1.000 1.000 1.000 1.000";
};
Server.cs
function serverCmdSentModelhat(%client)
{
%player = %client.player;
if(isObject(%player))
{
if(%player.getMountedImage(2) $= nametoID(ModeHatlImage))
{
%player.unmountImage(2);
%client.applyBodyParts();
%client.applyBodyColors();
}
else
{
%player.unmountImage(2);
%player.mountImage(ModelHatImage,2);
for(%i = 0;$hat[%i] !$= "";%i++)
{
%player.hideNode($hat[%i]);
%player.hideNode($accent[%i]);
}
}
}
}commandtoserver(\'ModelHat\');