SetAmbientSoundEnabled

From Multi Theft Auto: Wiki
Revision as of 17:25, 6 September 2012 by Ransom (talk | contribs) (Linked two similar named functions in the notebox until (if?) one is deprecated)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function allows you to disable some background sound effects.

This template is no longer in use as it results in poor readability.

Syntax

bool setAmbientSoundEnabled( string theType, bool enable )

Required Arguments

  • theType: The type of ambient sound to toggle. Can be either "gunfire" or "general".
  • enable : Set false to turn off, true to turn on

Returns

Returns true if the ambient sound was set correctly, false if invalid values were passed.

Example

This example turns off the ambient water and gunfire sounds:

setAmbientSoundEnabled( "general", false )
setAmbientSoundEnabled( "gunfire", false )

See Also