<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
<title></title>
</head>
<body text="#000000" bgcolor="#ffffff">
On 6/11/2011 4:36 PM, Wayne wrote:
<blockquote
cite="mid:BANLkTin4qd5m_39srTV8pqwF-haMJySQ+Q@mail.gmail.com"
type="cite">
<div>Hi,</div>
<div> </div>
<div>Can anyone tell me what settings and where to adjust how my
avatar sits. Right now it sits 2 feet above the object it is
told to sit on.</div>
<div> </div>
<div>Also, when landing after flying, the avatar bounces all over
the place and sometimes will not land at all.</div>
<div> </div>
<div>Any help would be appreciated.</div>
<div> </div>
<div>I am running windows 7 opensim version 0.7.2.</div>
<div> </div>
<div>Thank you,</div>
<div>Wayne</div>
<pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
Opensim-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Opensim-users@lists.berlios.de">Opensim-users@lists.berlios.de</a>
<a class="moz-txt-link-freetext" href="https://lists.berlios.de/mailman/listinfo/opensim-users">https://lists.berlios.de/mailman/listinfo/opensim-users</a>
</pre>
</blockquote>
<br>
Hi, I am not sure about a setting in the config files but what I do
is put a script in the object to be sat on that specifies a sit
target. Example:<br>
<br>
vector target = <0.0, 0.0, 0.3>; //You can change the z axis
vector to something other than 0.3 to suit your needs<br>
<br>
default<br>
{<br>
state_entry()<br>
{<br>
llSitTarget(target, ZERO_ROTATION);<br>
}<br>
}<br>
<br>
Hope this helps!<br>
</body>
</html>