# Set Achievement Toast Style

Grammar — Set the Achievement Toast Style for players to style
FlagsNative | Action | Restricted

Sets the skin used for achievement toasts.

# Arguments

Returns — void

native void UISetAchievementToastStyle(
	playergroup inPlayers,
	int style,
);

Category: UI / Game UI

# Examples

# campaigns/swarmstory.sc2campaign

SwarmCampaignLib.galaxy

// L12758
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleZerg)

# campaigns/voidstory.sc2campaign

VoidCampaignLib.galaxy

// L6599
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleTerran)
// L6602
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleZerg)
// L6605
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleProtoss )

# mods/missionpacks/novacampaign.sc2mod

LibNovC.galaxy

// L2281
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleTerran)

# mods/voidprologue.sc2mod

LibA3DDD02B.galaxy

// L5893
UISetAchievementToastStyle(PlayerGroupAll(), c_achievementToastStyleProtoss )