I am currently using a script to load and unload all the scripts and it doesnt seem to work. This is the script:

on $*:text:/^!(un)load$/:#:{
if ($regml(1) == un) {
var %i = 1
while ($script(%i) != $null) {
if ($script(%i) == $script) {
inc %i
continue
}
.unload -rs $qt($script(%i))
}
}
else { noop $findfile(<C:\Users\John John\Desktop\Bot>,*.mrc,0,.load -rs $qt($1-)) }
}

I would appreciate if someone could help me with this or write me another script to unload and load scripts on command. Thank you!