1. Code:
     bool Api_IsMuted (string id)
            {
                Player pl = Find(id);
                if (pl == null) return false;
                return pl.mute.Muted;
            }
            
    I use Betterchat, but modified. Climbs error and I don't know what to do.
     
  2. Code:
    bool Api_IsMuted (string id)        {
                Player pl = Player.Find(id);
                if (pl == null) return false;
                return pl.mute.Muted;
            }
     
  3. Thanks for your attention and help!