Player::enableVoiceTo: Difference between revisions
(Looks beast now) |
mNo edit summary |
||
| Line 1: | Line 1: | ||
This function is used to enable voice listening to a certain player. | This function is used to enable voice listening to a certain player. | ||
{{ServersideCsJsFunction}} | |||
{{CSharpContainer| | {{CSharpContainer| | ||
<pre> | <pre> | ||
Revision as of 06:25, 26 November 2019
This function is used to enable voice listening to a certain player.
Server-Side Function
C# Syntax
Player.EnableVoiceTo(Client target);
Parameters
- target: The Player you want to listen to.
Example
[Command("listento")]
public void ListenToTarget(Client player, Client target)
{
player.EnableVoiceTo(target);
//If you want it to be bidirectional
target.EnableVoiceTo(player);
}
JavaScript Syntax
player.enableVoiceTo(Player player)
Parameters
- player: The Player you want to listen to.
Example
This example below shows how all players can hear the player with ID "0".
let player = mp.players.at(0);
mp.players.forEach((_player) => {
if(player == _player) return false;
player.enableVoiceTo(_player);
});