Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 483 Bytes

setCallChannel.md

File metadata and controls

25 lines (16 loc) · 483 Bytes

setCallChannel | addPlayerToCall | SetCallChannel

Description

Sets the local players call channel.

Parameters

  • callChannel: the call channel to join
-- Joins call channel 1
exports['pma-voice']:setCallChannel(1)

-- This will remove them from the call channel
exports['pma-voice']:setCallChannel(0)

addPlayerToCall is provided as a 'easier to read' version of setCallChannel.

-- Joins call channel 1
exports['pma-voice']:addPlayerToCall(1)