Scripting/Squirrel/Functions/Player.PlaySound
This wiki is using an old backup from 2020
Some information may be old/missing
This function will play a sound for a specific player
Syntax
Player.PlaySound( sound )
Arguments
- instance Player - The player to play sound for
- int sound - The sound ID
Example
function OnPlayerCommand( player,cmd , text )
{
if ( cmd == "sound" )
{
player.PlaySound( 30 );
}
}
Notes
Use Player.UniqueWorld to play sound for a specific player.