Mongodb find a document with all subdocuments satisfying a condition
If you only have one other status than "played" use the query:
db.games.find({ "players.status": { $ne:"accepted" } })
You can adjust the query to handle more status values, as long as they are all known at the time of the query.