CheckSaveGame

bool CheckSaveGame(string gameName, number slotNumber[, string gameVersion])

Checks if the game in slotNumber can be loaded, making sure it exists, is valid, and matches the gameName (and if specified, gameVersion).

It returns TRUE on success, FALSE on fail.

Example
(if(CheckSaveGame("LSL3" 2 "1.0"))
    Print("The game in slot 2 is OK!")
)