Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Teleport from a sitting position

Aaron Aldwych
Silver Surfer
Join date: 26 Oct 2006
Posts: 55
02-15-2007 08:54
If I teleport from a sitting position when I "arrive" I am still sitting but without the stand up button present.

The answer has got to be - well don't do it then !:eek:

But...... I still do, is there a simple recovery from the sitting position - I assume it is "locked" in a pose, certainly "stop all animations" has no effect.
Raudf Fox
(ra-ow-th)
Join date: 25 Feb 2005
Posts: 5,119
02-15-2007 08:57
Re-teleport?

Also, I've found that tapping the button that makes you move forward sometimes stops the 'animation.'
_____________________
DiamonX Studios, the place of the Victorian Times series of gowns and dresses - Located at http://slurl.com/secondlife/Fushida/224/176

Want more attachment points for your avatar's wearing pleasure? Then please vote for

https://jira.secondlife.com/browse/VWR-1065?
Darien Caldwell
Registered User
Join date: 12 Oct 2006
Posts: 3,127
02-15-2007 09:22
yes, don't do that. and usually you have to relog to fix it.
_____________________
Brenda Connolly
Un United Avatar
Join date: 10 Jan 2007
Posts: 25,000
02-15-2007 10:15
Sometimes flying will fix it, but usually relogging is the fix. i do that from time to time as well as teleport while dancing.
Diana Moonsoo
Registered User
Join date: 14 Dec 2006
Posts: 39
02-15-2007 10:24
The only thing that has fixed it for me without fail is the "stop all animations" thing that someone had given me a while back. Sometimes I can get out of the sit by sitting on something else and then standing up, or teleporting again but it seems really hit and miss.

I do this quite often too.
Ceera Murakami
Texture Artist / Builder
Join date: 9 Sep 2005
Posts: 7,750
02-15-2007 10:46
Try sitting on something else, and then stand up?
_____________________
Sorry, LL won't let me tell you where I sell my textures and where I offer my services as a sim builder. Ask me in-world.
Strife Onizuka
Moonchild
Join date: 3 Mar 2004
Posts: 5,887
02-15-2007 10:55
Make a box and put this script in it. When this happens, rez the box and click it or sit on it and it will stop all playing animations. Attaching it and clicking it would work too.

CODE

default
{
state_entry()
{
llSitTarget( <0,0,1>, <0,0,0,1> );
}
touch_start(integer a)
{
llRequestPermissions(llDetectedKey(0), PERMISSION_TRIGGER_ANIMATION);
}
changed(integer a)
{
if(a & CHANGED_LINK)
{
key b = llAvatarOnSitTarget();
if(b)
llRequestPermissions(b, PERMISSION_TRIGGER_ANIMATION);
}
}
run_time_permissions(integer a)
{
if(a & PERMISSION_TRIGGER_ANIMATION)
{
list b = llGetAnimationList(llGetPermissionsKey());
if(a = -llGetListLength(b))
{
do
llStopAnimation(llList2String(b,a));
while(++a);
}
key c = llAvatarOnSitTarget();
if(c)
llUnsit(c);
}
}
}
_____________________
Truth is a river that is always splitting up into arms that reunite. Islanded between the arms, the inhabitants argue for a lifetime as to which is the main river.
- Cyril Connolly

Without the political will to find common ground, the continual friction of tactic and counter tactic, only creates suspicion and hatred and vengeance, and perpetuates the cycle of violence.
- James Nachtwey
Tabitha Miranda
Registered User
Join date: 6 Mar 2006
Posts: 46
02-15-2007 12:23
Menu TOOLS-->Stop All Animations (about 1/2 way down the menu list).

I find this stops about 95% of animation glitches including teleporting while still sitting.

For the ones this does not stop I just log out and back in.

Or you can use a stop animation object like Diana and Strife suggest for the ones the tool menu does not fix.
Kira Cuddihy
Registered User
Join date: 29 Nov 2006
Posts: 1,375
02-15-2007 12:35
I have done that more often that I care to say, because I am in such a hurry. Go back where you came from, sit down where you were. Stand up and now you are fine. Now you can get the heck out of there and go where you please without feeling like an idiot. :)
IC Fetid
Registered User
Join date: 19 Oct 2005
Posts: 145
02-15-2007 12:43
From: Diana Moonsoo
The only thing that has fixed it for me without fail is the "stop all animations" thing that someone had given me a while back. Sometimes I can get out of the sit by sitting on something else and then standing up, or teleporting again but it seems really hit and miss.

I do this quite often too.


"Stop all animations" Has never worked for me.