CSGO, give more weapons on spawn.

This commit is contained in:
zaCade 2017-08-23 17:23:43 +02:00
parent 853c8b68f5
commit c06ddc3fcd
1 changed files with 9 additions and 0 deletions

View File

@ -1313,6 +1313,15 @@ ZMarketRebuy(client, bool:autorebuy = false)
if (!RestrictIsWeaponRestricted(WeaponsNameToIndex("Smokegrenade")))
ZMarketEquip(client, "Smokegrenade", autorebuy);
if (g_Game == Game_CSGO)
{
if (!RestrictIsWeaponRestricted(WeaponsNameToIndex("Healthshot")))
ZMarketEquip(client, "Healthshot", autorebuy);
if (!RestrictIsWeaponRestricted(WeaponsNameToIndex("TAGrenade")))
ZMarketEquip(client, "TAGrenade", autorebuy);
}
}
}