It should work, yes, however it might be easier to just make an alias of that.
alias myscripts {
load -rs scripts/script1.mrc
load -rs scripts/script2.mrc
load -rs scripts/script3.mrc
}
Then you can just type /myscripts to run that code block.
If you want it all to be on one line, look up pipes, I dunno how accurate the wiki is about the speed though:
http://en.wikibooks.org/wiki/MIRC_Scripting/Basics/Basics#Single_Line_CommentsWARNING: Another method of doing multi-command blocks of code in mIRC Scripting is called piping, where a pipe character (|) is stuck in between the two commands, such as /echo hi! | /echo goodbye! This makes hard to read code, takes mIRC longer to process, and in general is bad coding practice. Use it sparingly.
Examples here:
https://forums.mirc.com/ubbthreads.php/ubb/showflat/Number/234835/page/3Good luck!