RetroThings
Some retro things that have been around in the past time ..
At the moment there are Phonograph, Reel to Reel ‘Teac A-3300SX’ Tape Recorder, UK ‘Ekсo AD75’ and German ‘VE301w’ radio receivers, Soviet Loudspeaker ‘Record’.
Some more stuff are in the plan.
In the attributes of the object select the available in the game records.
Start the records with ace interaction menu.
To add custom music to the mission in the init field of the Phonograph put the following lines:
_action = ["mytrack","My Track Name","",{params ["_target"]; [_target,"my_track_1"] execVM "KIF_Gramophonplay_track.sqf";},{true}] call ace_interact_menu_fnc_createAction;
[this, 0, ["ACE_MainActions"], _action] call ace_interact_menu_fnc_addActionToObject;
where My Track Name is the title appeared in the ace interaction menu,
and my_track_1 is the sound class name defined in the description.ext
Similar as in the above script use: [_target,"my_track_1"] execVM "KIF_Reelplay_track.sqf"; to add sounds for the Tape Recorder.
Use [_target,"radio_track_1"] execVM "KIF_OldRadioplay_radio.sqf"; to add sound for the radio.
There is exist a nice mod WWII Immersive AIO Radio Pack from S. Compton that contains large collection of radio records of WW2 time as SFX sounds.
To use those sounds (or another SFX sounds) with the radio receivers use [_target,"sfx_sound_class"] execVM "KIF_OldRadioplay_radio_sfx.sqf";