Hello, i have a problem to clear Killstreak after round.
They Bots using the Heli and if the round 1 is over (all bots dead)
they have in round two still the heli killstreak, how i can remove id after each round?
bg p2tK
Quote: if (level.round == 1)
{
self giveWeapon("ak74u_rf_mp");
self setWeaponAmmoStock("ak74u_rf_mp", 300);
self switchToWeapon("ak74u_rf_mp");
self thread refillammo();
self maps\mp\gametypes\_hardpoints::giveKillstreak("helicopter_comlink_mp" );
}
else if (level.round == 2)
{
self giveWeapon("commando_silencer_mp");
self setWeaponAmmoStock("commando_silencer_mp", 300);
self switchToWeapon("commando_silencer_mp");
self thread refillammo();
self maps\mp\gametypes\_hardpoints::giveKillstreak("uav_mp" );
}
They Bots using the Heli and if the round 1 is over (all bots dead)
they have in round two still the heli killstreak, how i can remove id after each round?
bg p2tK