Sound.Play

From Liberty Unleashed Wiki
Revision as of 14:28, 17 August 2011 by Murdock (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function plays a local sound stored in the server files.

Syntax

  1. bool Sound.Play( player plr )

Arguments

  • plr - The player to play the sound for

Example

This code will play the sound 'moo.mp3' for a player when they type '/moo'.

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. if ( szCommand == "moo" )
  5. {
  6. local sound = FindSound( "moo.mp3" );
  7. if ( sound )
  8. {
  9. sound.Open( pPlayer );
  10. sound.Play( pPlayer );
  11. sound.Close( pPlayer );
  12. }
  13. }
  14. return 1;
  15. }
  16.  

Notes

The event onPlayerCommand was used in this example. More info about this in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox