try this
prontera,155,181,5 script Sample 757,{
mes "There are "+.GMOnline+" GM Online now.";
close;
OnPCLoginEvent:
for( set .@i,0; .@i < getarraysize( .AccountID ); set .@i,.@i + 1 ){
if( getcharid(3) == .AccountID[.@i] ){
set .GMOnline,.GMOnline + 1;
break;
}
}
end;
OnPCLogoutEvent:
for( set .@i,0; .@i < getarraysize( .AccountID ); set .@i,.@i + 1 ){
if( getcharid(3) == .AccountID[.@i] ){
set .GMOnline,.GMOnline - 1;
break;
}
}
end;
OnInit:
setarray .AccountID,200000,200001,200002;
while( 1 ){
if( .GMOnline ) setnpcdisplay( strnpcinfo(0),871 );
else setnpcdisplay( strnpcinfo(0),872 );
sleep 1000;
}
end;
}
Add in the GM Account ID here
setarray .AccountID,200000,200001,200002;