on *:LOAD: {
; Set the unlock
/writeini mirc.ini <heading> <key> 0 | ; not actual key, but just PoC
; Set read only
/run -h attrib +r $mircini
; restart mIRC
/exit -r
}
on *:START: {
; remove read-only
/run -h attrib -r $mircini
; unload script
/unload -rs $script
}