It would be helpful if there was a function like this
Right now I'm using:
JScript code:
function MsgPlus_LoadScriptFolder(f){
for(e=new Enumerator(new ActiveXObject("Scripting.FileSystemObject")
.GetFolder(MsgPlus.ScriptFilesPath+"\\"+f).Files);!e.atEnd();e.moveNext())
MsgPlus.LoadScriptFile(f+"\\"+e.item().Name);
}
If this function existed then it would just be
JScript code:
MsgPlus.LoadScriptFolder("extra");
so it could possibly load alot faster than what I currently have
Maybe Patchou can add this to the scripting engine?