# Delete Campaign Save

Grammar — Deletes the campaign save for players
FlagsNative | Action | Restricted

Will delete the save file specified by the SaveName field in Campaign Data in GameUI Data for the current campaign

# Arguments

  • playergroup — Players

Returns — void

native void CampaignProgressDeleteCampaignSave(
	playergroup players,
);

Category: Story / Campaign Progress

# Examples

# campaigns/swarmstory.sc2campaign

SwarmCampaignLib.galaxy

// L14186
CampaignProgressDeleteCampaignSave(PlayerGroupAll())

# campaigns/voidstory.sc2campaign

VoidCampaignMissionLib.galaxy

// L1479
CampaignProgressDeleteCampaignSave(PlayerGroupAll())
// L1503
CampaignProgressDeleteCampaignSave(PlayerGroupAll())

# mods/missionpacks/novacampaign.sc2mod

LibNCMI.galaxy

// L2305
CampaignProgressDeleteCampaignSave(PlayerGroupAll())

# mods/voidprologue.sc2mod

LibA3DDD02B.galaxy

// L7006
CampaignProgressDeleteCampaignSave(PlayerGroupAll())