Poll

Would this mod be...

useful ?
22 (75.9%)
useless ?
7 (24.1%)

Total Members Voted: 29

Author Topic: Auto-Talk button  (Read 1950 times)

hello, i'd like someone to make a client-sided add-on that plays the talking animation while the key (keybind) is hold. it would be useful for my videos

thanks
« Last Edit: March 02, 2016, 09:52:08 AM by Vitawrap »

Can't be done purely client-side
You can have a client-side add-on that calls a servercmd, and then a server-side add-on with that servercmd to play the animation, that's it

you can have a server addon that catches a certain message, doesnt send it to clients but plays the animation then you can have the client send X of those a second and you should have it

you can have a server addon that catches a certain message, doesnt send it to clients but plays the animation then you can have the client send X of those a second and you should have it

Hmm... And is this possible to make as a playertype ?

you can have a server addon that catches a certain message, doesnt send it to clients but plays the animation then you can have the client send X of those a second and you should have it
Hmm... And is this possible to make as a playertype ?
These are more complicated than it needs to be

Code: [Select]
function serverCmdTalkAnim(%client) { %client.player.playThread(0,talk);}
function serverCmdStopTalkAnim(%client) { %client.player.playThread(0,root);}
/talkanim to start
/stoptalkanim to stop

Ow yea, it would be cool, iwill support you. First time, when i read this topic, i start thinking you wanna keybindable button for voice chat, lol.

OR instead of making it a key bind, you could make a playertype that plays the animation when you right-click (or jet)

These are more complicated than it needs to be

Code: [Select]
function serverCmdTalkAnim(%client) { %client.player.playThread(0,talk);}
function serverCmdStopTalkAnim(%client) { %client.player.playThread(0,root);}
/talkanim to start
/stoptalkanim to stop

(Bump)

No commands please, as soon as we need to type a command , it gets annoying over time. We would need a keybind/button to hold...

(Bump)

No commands please, as soon as we need to type a command , it gets annoying over time. We would need a keybind/button to hold...
Well you'll need those commands either way, the client needs a serverCmd to tell the server to call.
Could make a bind also, but use those commands for anyone who doesn't feel like downloading/installing it

(Bump)

No commands please, as soon as we need to type a command , it gets annoying over time. We would need a keybind/button to hold...

You could also just press up if "Press Up to Repeat Chat" is enabled in advanced settings, rather than retype it everytime. You could also just make the command shorter, but the former solution is better if you'd rather not keep typing.

Or take a look for a simple mod with a keybind and edit it. Maybe Rapid Fire?

Or take a look for a simple mod with a keybind and edit it. Maybe Rapid Fire?
-forget it wrong timing-
« Last Edit: September 14, 2014, 06:23:52 PM by DrHitiusSir »

What do you mean? We don't have the add-on?

D/L Link

are you loving blind? we dont even have that now.
there are a ton of addons that use a keybind
I think you need to open your eyes and look around
I know for sure there is at least one addon with a keybind, because I have multiple that I made that do

(Bump)

No commands please, as soon as we need to type a command , it gets annoying over time. We would need a keybind/button to hold...
cmdtoservertalkanim();
cmdtoserverstoptalkanim();
use server command gui thing from NARG
bang