Checkpoints/ Autosaves
From CustomCoD Wiki
Overview
Autosaves/checkpoints are a common functionality in Singleplayer/Co-Op, they provide players spots to pick up from in the event that they die.
Implementation
There are two common ways to execute an autosave, by trigger or by script.
Trigger
Make a trigger of your choice and give it the Key Value Pair:
"targetname" "trigger_autosave"
When the trigger is triggered, it will make an autosave.
Script
To make an autosave via script, we pass a save name string into autosave_by_name function.
autosave_by_name( "Player just grabbed documents" );
Source Treyarch Wiki

