Online Sequencer Forums

Full Version: This technique I found is actually revolutionary.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Do you like audio clipping and ear rape? Well, then this is for you! This technique is not only client side, but server side as well! This means if you save a song with this modification or similar ones, it will stay like that forever, even if you reload.
First, here is the basic console (f12 menu) code:
Code:
audioSystem.instrumentVolume[<Instrument Id>]=1000
You can find the instrument id by looking at the last number in the copy and paste data if you copy the note of the type you want to modify. This modifies the global volume of all notes of the type specified.

For total ear rape, this applies the effect to every instrument:
Code:
for(i=0;i<settings.numInstruments;i++){audioSystem.instrumentVolume[i]=1000}

Enjoy!