>>81247605>>81247800 (me)You know what you made me actually look into it and it was the easiest fucking change ever. Just because I know no one would just take the full code from /here/ this is what you need to change.
Ctrl+f in the script window of 4chanx and search "randomize". there should be only two options so click next to see line in picrel. Change the entrie if statement line to match the picture with this line:
if (Conf['Randomize Filename'] &&
g.BOARD.ID !== 'f' && !(
this.file.name.endsWith(".webm") &&
this.file.name.contains("[sound="))) {
If you want to have all webms regardless if they have a sound link in them not be randomized then change that line to this instead:
if (Conf['Randomize Filename'] &&
g.BOARD.ID !== 'f' && !
this.file.name.endsWith(".webm")) {
This makes it so it adds a check to the filename and if it ends with .webm and finds a sound link the script will not randomize the filename. Lets you have randomize filenames on without fucking with webms with audio.
TLDR Easy fix to have randomize filenames while still linking webms with audio.