Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Height Indication on the appearence changer

Azreal Rubio
PrimHead
Join date: 29 Jan 2004
Posts: 194
07-20-2004 14:51
How about some indication in feet / inches or metric as to the height of the avatar while your changing it. also not just for the height adjuster but any slider that adjusts the avatars height (hip length etc)

It would cut out a lot of the guess work.

apologies if this has already been suggested.

Az. :D
Eggy Lippmann
Wiktator
Join date: 1 May 2003
Posts: 7,939
07-20-2004 17:51
default
{

touch_start(integer t)
{ vector v=llGetAgentSize(llDetectedKey(t - 1));
string n=llDetectedName(t - 1);
llSay(0, n+" is "+(string)v.z+" meters tall";);
llSetScale(v);
llSetText(n,<1,1,1>,1);
llSetPos(llDetectedPos(t - 1));

}
}