MUMBLE_SET_AUDIO_INPUT_INTENT
Use this native to disable noise suppression and high pass filters. The possible intents for this are as follows (backticks are used to represent hashes): | Index | Description | |-|-| | \`speech\` | Default intent | | \`music\` | Disable noise suppression and high pass filter |
CFX
Signature
lua
MumbleSetAudioInputIntent(GetHashKey("..."))
-- returns voidParameters
| Name | Type | Description |
|---|---|---|
| Hash | The intent hash. |
Usage
Named call
MumbleSetAudioInputIntent(GetHashKey("..."))InvokeNative
Citizen.InvokeNative(0x6383526B, GetHashKey("..."))lua 1
-- disable noise suppression and high pass filter
MumbleSetAudioInputIntent(`music`)
-- set the default intent (enable noise suppression and high pass filter)
MumbleSetAudioInputIntent(`speech`)Details
- Hash
- API set
- Source
- cfx
Source: cfx
