Edit this line with
if (getgmlevel())
How ? example
- script WOE_BLOCK -1,{
OnPCLoginEvent:
// When a GM logs in during WOE, kick them.
if ((agitcheck() || agitcheck2()) && getgmlevel())
atcommand "@kick "+strcharinfo(0);
end;
OnAgitStart:
OnAgitStart2:
// When WOE starts, kick all GMs.
addrid(0);
if (getgmlevel(60))
atcommand "@kick "+strcharinfo(0);
end;
}