function SetIconsWave1() { PopExt.SetWaveIconsFunction(function() { //add tags PopExt.AddRobotTag("bot_pyro", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("pyro",MVM_CLASS_FLAG_NORMAL,0) } }) PopExt.AddRobotTag("bot_scout", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("scout",MVM_CLASS_FLAG_NORMAL,0) } }) PopExt.AddRobotTag("gburst_demo", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("demo_burst_red_giant",MVM_CLASS_FLAG_MINIBOSS | MVM_CLASS_FLAG_ALWAYSCRIT,1) } }) PopExt.AddRobotTag("medic_bigheal", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("medic_regen2",MVM_CLASS_FLAG_NORMAL,0) } }) PopExt.AddRobotTag("soldier_directhit", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("soldier_directhit_lite",MVM_CLASS_FLAG_MINIBOSS,1) } }) PopExt.AddRobotTag("sniper_hunts", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("sniper_bow",MVM_CLASS_FLAG_NORMAL,0) } }) PopExt.AddRobotTag("heavy_boss", { OnDeath = function(bot, tag) { PopExt.DecrementWaveIconSpawnCount("boss_ironhelm",MVM_CLASS_FLAG_MINIBOSS | MVM_CLASS_FLAG_ALWAYSCRIT,1) } }) //set wave icon PopExt.SetWaveIconSpawnCount("pyro", MVM_CLASS_FLAG_NORMAL, 25) PopExt.SetWaveIconSpawnCount("scout", MVM_CLASS_FLAG_NORMAL, 30) PopExt.SetWaveIconSpawnCount("demo_burst_red_giant", MVM_CLASS_FLAG_MINIBOSS | MVM_CLASS_FLAG_ALWAYSCRIT, 1) PopExt.SetWaveIconSpawnCount("medic_regen2", MVM_CLASS_FLAG_NORMAL, 25) PopExt.SetWaveIconSpawnCount("soldier_directhit_lite", MVM_CLASS_FLAG_MINIBOSS, 2) PopExt.SetWaveIconSpawnCount("sniper_bow", MVM_CLASS_FLAG_SUPPORT, 9999) PopExt.SetWaveIconSpawnCount("boss_ironhelm", MVM_CLASS_FLAG_MINIBOSS | MVM_CLASS_FLAG_ALWAYSCRIT, 1) }) }