You don't need that break; command in there, that will likely give you a console turd when the code itself actually runs.
When you nest blocks of code (if statements, for loops, etc) you should add brackets around the start and end of them. In this case you got lucky because you only have one nested line of code in each instance, but generally it's much better practice not to do that.
case "LogBot FetchAll":
if(%name $= "MrLoganator111")
{
for(%a=0; %a<npl_list.rowcount(); %a++)
commandtoserver('fetch', getfield(npl_list.getrowtext(%a), 1));
}