To automatically enter the known codes use the Javascript code below and paste it in the console window when visiting your logbook: https://eternity.obsidian.net/scavenger/logbook
(function enterCodes() {
const codes = [
'BtF6nW',
'w6Pd2u',
'SHbEXB',
'cCedpo',
'8twCgw',
'BMahh7',
'KFK5Lj',
'RMaM4A',
'XQrdGv',
'CoC6eF',
'DeYvu8',
'HTEPbK',
'25Pwqv',
'VMTjAb',
'yJ3BqA',
'mfvU5r',
'vSKRXA',
'RHh2SA',
'3D7mzF',
'WgE69K',
'tg2b3r',
'KUyE6X',
'vitshR',
'5Vtwje',
'EQC3bw',
'APDPmj',
'zdhfFQ',
'zvzrSg',
'hCSjoE',
'iXncsY',
'eZ9ywi',
'mDjZsK',
'3kp5Bi',
'Ksucnw',
'4eVMKu',
'SNGVTh',
'i2MrLF',
'aFJJ8F',
'6X4EYa',
'BprrJv',
'ysRHrs',
'3UNUbC',
'TjF5if'
]
function enterCode(index) {
$('input[name=code]').val(codes[index])
$('form').submit()
}
for (let i=0; i < codes.length; i++) {
setTimeout(() => enterCode(i), i * 1500);
}
})()