There are two ways:
1: Re-write serverDirectSaveFileLoad and ServerLoadSaveFile_End to not send the message. This would break all add-ons that use these for something.
2: Package MessageAll to not call the parent for the two specific messages. That would be alot easier, and should not break anything.
You could do it like this:
package NoLoadMessages
{
function MessageAll(%msgType, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10, %a11, %a12, %a13)
{
if(%msgType == 'MsgUploadStart' && (%msgString $= "Loading bricks. Please wait." || %msgString == '\c3%1\c0 Re-Loading bricks. Please wait.'))
return;
if(%msgType == 'MsgProcessComplete' && strPos(%msgString, ($Load_brickCount - $Load_failureCount @ " / " @ $Load_brickCount @ " bricks created in ")) == 0)
return;
return parent::MessageAll(%msgType, %msgString, %a1, %a2, %a3, %a4, %a5, %a6, %a7, %a8, %a9, %a10, %a11, %a12, %a13);
}
};
activatePackage(NoLoadMessages);