SetPlayerVoiceTone: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Client|1.1.0}} {{FuncDescription|Switches the player voice tone.}} {{FuncSyntax|SetPlayerVoiceTone(playerId, bEnable)}} {{FuncParameters}} {{FuncParam|gende...")
(No difference)

Revision as of 22:08, 7 March 2020

SetPlayerVoiceTone

Type: Function
Context: Client
Introduced: v1.1.0

Description

Switches the player voice tone.

Syntax

SetPlayerVoiceTone(playerId, bEnable)

Parameters

  • gender
    male or female.

Return Value

  • Returns true on success.

Example

-- If male
SetPlayerVoiceTone(GetPlayerId(), "male")

-- If female
SetPlayerVoiceTone(GetPlayerId(), "female")

See also

_EDIT_ME_