Author Topic: function GameConnection::isTalking(%parameters) [SOLVED]  (Read 560 times)

I need to know that function and its parameters or what the function is for %client.isTalking, if anyone know sand could help that would be great.

Edit: Its the function that displays your name in blue at the top left when your typing.

its function servercmdStartTalking(%client)
« Last Edit: January 28, 2013, 06:54:53 PM by Gordo12699 »

You shouldn't really have to package isTalking. If you are trying to check if the player is talking, or trying to make the player talk. Just package
Code: [Select]
servercmdStartTalking(%client);
servercmdStopTalking(%client);
And assuming isTalking() returns a bool, there most likely is not any parameters.
EDIT: I just checked, GameConnection::isTalking() doesn't even exist.

Yeah I made it up because I thought it would be a helpful example.