# Enable/Disable All Score Tracking

Grammarenable|Enable/Disable all score tracking for player inPlayer
FlagsNative | Action

Enables or disables all score tracking for the specified player.

# Arguments

Returns — void

native void PlayerScoreValueEnableAll(
	int player,
	bool enable,
);

Category: Story / Victory Panel

# Examples

# campaigns/swarmstory.sc2campaign

SwarmCampaignLib.galaxy

// L15820
PlayerScoreValueEnableAll(auto55108C9F_var, false)
// L16058
PlayerScoreValueEnableAll(auto2D1628C0_var, true)

# campaigns/voidstory.sc2campaign

VoidCampaignMissionLib.galaxy

// L4453
PlayerScoreValueEnableAll(auto806AEE93_var, false)
// L4508
PlayerScoreValueEnableAll(auto8E4FBCB3_var, true)

# mods/core.sc2mod

NativeLib.galaxy

// L2063
PlayerScoreValueEnableAll(lv_pickedPlayer, false)
// L2119
PlayerScoreValueEnableAll(lv_pickedPlayer, true)
// L1753
PlayerScoreValueEnableAll(lv_pickedPlayer, false)
// L1809
PlayerScoreValueEnableAll(lv_pickedPlayer, true)

# mods/heroesbrawlmods/brawlmapmods/coop/deadmansstand.stormmod

LibPEB1.galaxy

// L10864
PlayerScoreValueEnableAll(auto359AC56F_var, true)
// L9951
PlayerScoreValueEnableAll(auto05642D4F_var, true)

# mods/missionpacks/novacampaign.sc2mod

LibNCMI.galaxy

// L4526
PlayerScoreValueEnableAll(PlayerGroupLoopCurrent(), false)
// L4571
PlayerScoreValueEnableAll(PlayerGroupLoopCurrent(), true)

# mods/starcoop/starcoop.sc2mod

LibCOMI.galaxy

// L724
PlayerScoreValueEnableAll(lv_indexPlayer, true)
// L801
PlayerScoreValueEnableAll(lv_pickedPlayer, false)

# mods/voidprologue.sc2mod

LibA3DDD02B.galaxy

// L7516
PlayerScoreValueEnableAll(auto55108C9F_var, false)
// L7607
PlayerScoreValueEnableAll(auto2D1628C0_var, true)