Perhaps the best way to handle this is to let all games submit all scores all of the time, but put some logic in the (centralized!) score submitter to do things like maintaining local highscores, storing them when offline and auto-uploading them when online, and deciding what scores to upload (perhaps user-configurable so you can decide yourself if you want to upload every game played, only the scores that improve your monthly highscore, or only the scores that improve your all-time highscore).
That would be a better solution than letting each dev do things in their own way.
Hm, probably.
The way to do it would be to no longer include that sc binary in every PND, but let the C4A profile manager install it in /usr/bin/sc so PNDs can just use that one. The game should then immediately submit any highscore as soon as there's a game-over, but the score submitter should be smart enough to do something sensible with those submitted highscores (not just try to upload them to the server, but compare it first with previous local highscores). It could even keep statistics on how often you play games (because it sees all those submissions, even if they don't get uploaded) so it could generate a list of your favorite games (could be useful, because you're more likely to want to launch or check highscores of your favorite games).
That means existing PNDs with C4A support have to be modified a bit, but it makes adding C4A support to a game even easier than before, because you don't have to worry about score caching and error handling etc at all -- just execute sc (the new, smarter, globally configurable sc) and let it handle things.
You also maintain the C4A profile manager, right? Perhaps you could implement something like this, perhaps together with skeezix?