Scripting/Squirrel/Functions/Player.PlaySound: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This function will play a sound for a specific player == Syntax == <pre>Player.PlaySound( sound )</pre> == Arguments == * ''instance'' '''Player''' - The player to play so...")
 
No edit summary
Line 26: Line 26:
== Related Functions ==
== Related Functions ==


{{Scripting/Squirrel/Functions/Game_Functions}}
{{Scripting/Squirrel/Functions/Player_Functions}}
[[Category:Scripting/Squirrel/Functions/Player_Functions]]

Revision as of 18:50, 30 January 2017

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.

Related Functions

Player Game Functions

These functions exist for compatibility with the R2 Squirrel server.