IsPlayerTalking: Difference between revisions
From Onset Developer Wiki
No edit summary |
FlyingFork (talk | contribs) No edit summary |
||
Line 12: | Line 12: | ||
== Example == | == Example == | ||
<syntaxhighlight> | <syntaxhighlight> | ||
print("Talking: " .. IsPlayerTalking(player) and "Yes" or "No") | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 14:47, 26 June 2021
Description
Check if a player is talking or not.
Syntax
IsPlayerTalking(player)
Parameters
- player
The player identifier.
Return Value
- Returns true on success.
Example
print("Talking: " .. IsPlayerTalking(player) and "Yes" or "No")