Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Stopping the jump anim locks me in place?

Ruthven Willenov
Darkness in your light
Join date: 16 Jan 2008
Posts: 965
08-20-2009 12:18
ok, maybe i'm going about this the wrong way, but i'm wondering why i'm getting stuck. i'm using the below script to stop all animations but the one i want to play. for some reason, if i hit the jump button (pageup) the avatar doesn't even jump, and it locks me in place. i can still turn around, i just can't move from that spot. but if i sit on something and then unsit, i'm able to move around again. all other movement keys don't do this, even pageup/pagedown while flying. is there some thing in the viewer that the default jump anim needs to run for?

CODE

key id;
key animid;
string anim;

animate()
{
anim = llGetInventoryName(INVENTORY_ANIMATION,0);
animid = llGetInventoryKey(anim);
list anims = llGetAnimationList(id);
integer i;
integer len = llGetListLength(anims);
for(i;i < len ;++i)
{
string listanim = llList2String(anims,i);
if(listanim != animid)
{
llStopAnimation(listanim);
llOwnerSay(listanim);
}
}
llStartAnimation(anim);
}

default
{
on_rez(integer num)
{
if(llGetAttached())
{
id = llGetOwner();
llRequestPermissions(id, PERMISSION_TRIGGER_ANIMATION);
}
else
{
llSetTimerEvent(0);
}
}

run_time_permissions(integer perm)
{
animate();
llSetTimerEvent(.1);
}

timer()
{
animate();
}
}
_____________________
Dark Heart Emporium

http://www.xstreetsl.com/modules.php?name=Marketplace&MerchantID=133020

want more layers for tattoos, specifically for the head? vote here
http://jira.secondlife.com/browse/VWR-1449?

llDetectedCollision* Functions similar to touch
http://jira.secondlife.com/browse/SVC-3369
Argent Stonecutter
Emergency Mustelid
Join date: 20 Sep 2005
Posts: 20,263
08-20-2009 12:39
http://jira.secondlife.com/browse/SVC-3860
_____________________
Argent Stonecutter - http://globalcausalityviolation.blogspot.com/

"And now I'm going to show you something really cool."

Skyhook Station - http://xrl.us/skyhook23
Coonspiracy Store - http://xrl.us/coonstore
Ruthven Willenov
Darkness in your light
Join date: 16 Jan 2008
Posts: 965
08-20-2009 13:00

aah ok, thanks
_____________________
Dark Heart Emporium

http://www.xstreetsl.com/modules.php?name=Marketplace&MerchantID=133020

want more layers for tattoos, specifically for the head? vote here
http://jira.secondlife.com/browse/VWR-1449?

llDetectedCollision* Functions similar to touch
http://jira.secondlife.com/browse/SVC-3369