{ let l_block = document.createElement('div'); l_block.innerHTML = `
Players Instance Notifier
Notify of:
Mixed volume:
Delay between notifications:
Notify in public instances:
Notify in friends instances:
Notify in private instances:
Always notify of friends:
`; document.getElementById('settings-audio').appendChild(l_block); // Toggles for (let l_toggle of l_block.querySelectorAll('.inp_toggle')) modsExtension.addSetting('PIN', l_toggle.id, modsExtension.createToggle(l_toggle, 'OnToggleUpdate_PIN')); // Sliders for (let l_slider of l_block.querySelectorAll('.inp_slider')) modsExtension.addSetting('PIN', l_slider.id, modsExtension.createSlider(l_slider, 'OnSliderUpdate_PIN')); // Dropdowns for (let l_dropdown of l_block.querySelectorAll('.inp_dropdown')) modsExtension.addSetting('PIN', l_dropdown.id, modsExtension.createDropdown(l_dropdown, 'OnDropdownUpdate_PIN')); }