ItsMods

Full Version: clear killstreaks problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i am making a rotating killstreaks mod, is there a code that when you die it will remove the saved killstreaks, in mw2 have but in bo i cant find the right get right

mw2 = self maps\mp\killstreaks\_killstreaks::clearKillstreaks();

self maps\mp\gametypes\_hardpoints::clearKillstreak ??? Sad

thanks for the help tq

any 1 know the code for clear killstreaks after death or get killed to get killstreaks o.O
(03-15-2011, 14:54)bastard016017 Wrote: [ -> ]any 1 know the code for clear killstreaks after death or get killed to get killstreaks o.O

this should give the person the killstreak on death
Code:
giveKillstreakOnDeath()
{
for(;;)
{
self waittill("death");
self maps\mp\gametypes\_hardpoints::giveKillstreak( "KILLSTREAK_mp" );
wait .05;
}
}
cool thats looks like it would work ,now how to clear killstreaks on death xD