Jukebox Module – Arma 2

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "bis_fnc_" to "BIS_fnc_")
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:ArmA_2:_Editor_Modules]]
{{TOC|side}}
{{Feature|arma2oa|Only available in {{arma2oa}}.}}
The '''Jukebox''' plays random [[Arma 2: CfgMusic]].


== Introduction ==
== Initialization==
The '''Jukebox''' plays random [[ArmA_2:_Music|ArmA 2 music]].
=== Startup ===
''F7 > Jukebox''


=== Optional parameters ===
==== Set variables to jukebox logic with desired values ====


== Quickstart ==
*'''trackList = <array>;''' - List of played music tracks
::Example: ''this setvariable ["trackList",["EP1_Track","EP1_Track01D"]];''
::Default value: All songs in config


# Place the module in the editor.
*'''delay = <number>;''' - Delay between songs
::Example: ''this setvariable ["delay",0];''
::Default value: 3


=== Alternative startup (without module) ===


== Configuration ==
[<trackList>,<delay>] spawn BIS_fnc_music;
You can define the tracks that will be played and the delay in seconds between the tracks.
Both params are optional


You can configure it with the init line or a script.


'''Example (script):'''
{{GameCategory|arma2|Editor Modules}}
 
  jukebox1 [[setVariable]] ["trackList",[EP1_Track01,EP1_Track07],true];
  jukebox1 setvariable ["delay",30,true];
 
 
Note:
In this example the name of the jukebox module is ''jukebox1''.

Latest revision as of 19:25, 20 June 2021

Arma 2: Operation Arrowhead
Only available in Arma 2: Operation Arrowhead.

The Jukebox plays random Arma 2: CfgMusic.

Initialization

Startup

F7 > Jukebox

Optional parameters

Set variables to jukebox logic with desired values

  • trackList = <array>; - List of played music tracks
Example: this setvariable ["trackList",["EP1_Track","EP1_Track01D"]];
Default value: All songs in config
  • delay = <number>; - Delay between songs
Example: this setvariable ["delay",0];
Default value: 3

Alternative startup (without module)

[<trackList>,<delay>] spawn BIS_fnc_music;

Both params are optional