Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Altimeter

Huns Valen
Don't PM me here.
Join date: 3 May 2003
Posts: 2,749
05-28-2003 01:34
It would be nice if the HUD showed altitude.
Nada Epoch
The Librarian
Join date: 4 Nov 2002
Posts: 1,423
05-28-2003 02:26
in debug, if you turn on the camera details, it will give you the coordinates of the camera, including the z-axis.
_____________________
i've got nothing. ;)
Nada Epoch
The Librarian
Join date: 4 Nov 2002
Posts: 1,423
05-28-2003 02:57
you could either attach this script to you avatar, which is mildly amusing, or to a vehicle, and it would give you your current height.

CODE

default
{
state_entry()
{
llSetTimerEvent(10.0);
}

timer()
{
vector pos = llGetPos();
llSetText("Current Altitude : " + (string)pos.z,<1,1,1>,1);
}
}
_____________________
i've got nothing. ;)