Is there an easy way to make everyone orange in a region? I heard Khaldun was all grey but I couldnt find anything about it

Sadly, its like the only option regioncontroller doesnt have :(

Thanks for your help!

I had this..
public override bool OnMoveOver( Mobile m )
{
if ( m is PlayerMobile )
{
m.CriminalAction( true );
}
return true;
}

But it would be obnoxious to tile a whole area with this and it spams the ''you have committed a criminal act'' sys message lol
 
Back