Second Life Copybot
Talkjaw Voice Script - Printable Version

+- Second Life Copybot (https://secondlifecopybot.com)
+-- Forum: SECOND LIFE PRODUCTS (https://secondlifecopybot.com/forum-1.html)
+--- Forum: SCRIPTS (https://secondlifecopybot.com/forum-1022.html)
+---- Forum: SCRIPTS (https://secondlifecopybot.com/forum-8.html)
+----- Forum: Avatar Augmentation Scripts (https://secondlifecopybot.com/forum-51.html)
+----- Thread: Talkjaw Voice Script (/thread-7837.html)



Talkjaw Voice Script - NaTaS - 08-07-2014

Maybe you want to have a prim jaw move up and down to emulate talking while you type or use one of the grids FINE Voice clients.

*chokes on lies*

This is two part.

Make a gesture that looks as follows...

[Image: tumblr_n9xytz1Z1R1te7yaio1_400.png]

And make sure that the gesture is ACTIVE

And just insert this script into the parent prim.

Quote:integer x;

default
{
state_entry()
{
llListen(8049912,"",llGetOwner(),"a");
llListen(444,"",llGetOwner(),"talk0");
llSetTimerEvent(0.1);
}

listen(integer channel, string name, key id, string message)
{

llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
llSetRot( <-0.61394, 0.61934, -0.34453, 0.34755> );
llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
llSetRot( <-0.61986, 0.62532, -0.33376, 0.33669> );
llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
llResetScript();
}

timer()
{
if( llGetAgentInfo(llGetOwner()) & AGENT_TYPING )
{
llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
llSetRot( <-0.61394, 0.61934, -0.34453, 0.34755> );
llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
llSetRot( <-0.61986, 0.62532, -0.33376, 0.33669> );
llSetRot( <-0.53689, 0.54166, -0.45534, 0.45936> );
}
}

on_rez( integer start_param )
{
llResetScript();
}
}

set script to run in MONO

I would suggest putting it into a cube to help with lining it up.

Attach whatever it is you want to be a lower jaw to the parent prim and attach to your head or what have you. And you're finished.


RE: Talkjaw Voice Script - machinecode - 08-08-2014

I will give this a go.


RE: Talkjaw Voice Script - i_Skully - 10-08-2018

I'm going to give it a shot.


RE: Talkjaw Voice Script - i_Skully - 10-08-2018

I'm going to give it a shot.


RE: Talkjaw Voice Script - snehagenna - 06-19-2019

nice post thanks for sharing