Try this;
- script GM Restriction -1,{
OnInit:
// GM Level X and below will be Restricted
set .GMLevel,99;
// Map Names
setarray .MapList$[0],"sch_gld"; // Your WOE Map here
for( set .i,0; .i < getarraysize( .MapList$ ); set .i,.i + 1 )
setmapflag .MapList$[.i],mf_loadevent;
end;
OnPCLoginEvent:
OnPCLoadMapEvent:
for( set .@i,0; .@i < getarraysize( .MapList$ ); set .@i,.@i + 1 )
if( strcharinfo(3) == .MapList$[.@i] && getgmlevel() && getgmlevel() <= .GMLevel ){
mes "GM are not allowed to stay here.";
close2;
warp "SavePoint",0,0;
break;
}
end;
}