footsounds

This commit is contained in:
Your Name
2020-08-11 12:51:57 -06:00
parent d4831e69c1
commit 71083f0f77
3 changed files with 54 additions and 8 deletions

View File

@ -196,6 +196,9 @@ getSecondaries()
weapon_name = tableLookupByRow( "mp/statstable.csv", i, 4 );
if (weapon_name == "gl")
continue;
secondaries[secondaries.size] = weapon_name;
}
@ -231,6 +234,12 @@ getPerks(perktype)
perk_name = tableLookupByRow( "mp/perktable.csv", i, 1 );
if (perk_name == "specialty_c4death")
continue;
if (perk_name == "_specialty_blastshield")
continue;
perks[perks.size] = perk_name;
}
@ -255,6 +264,9 @@ getKillstreaks()
if(streak_name == "b1")
continue;
if(streak_name == "sentry") // theres an airdrop version
continue;
if (isSubstr(streak_name, "KILLSTREAKS_"))
continue;
@ -275,12 +287,6 @@ chooseRandomPerk(perkkind)
if (perk == "specialty_null")
continue;
if (perk == "specialty_c4death")
continue;
if (perk == "_specialty_blastshield")
continue;
if (!self isItemUnlocked(perk))
continue;