A point for never saving the game
Example 211
★★★Here is one way to score this point with Inform:
Check saving the game for the first time: decrement the score.
That has the right effect, but it just isn't sneaky enough. Instead let us quietly keep track of how many times the player saves:
Check saving the game: increment the number of saves.
When play ends: if the number of saves is 0, increment the score.
Sneakier, certainly, but now we could get the bonus even if the game ends earlier on, so finally:
When play ends: if the number of saves is 0 and the score is 349, increment the score.