From c06ddc3fcd9025b082e1187fa84d58ea07d1f977 Mon Sep 17 00:00:00 2001 From: zaCade Date: Wed, 23 Aug 2017 17:23:43 +0200 Subject: [PATCH] CSGO, give more weapons on spawn. --- src/zr/weapons/zmarket.inc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/zr/weapons/zmarket.inc b/src/zr/weapons/zmarket.inc index 10ee973..8f5dd19 100644 --- a/src/zr/weapons/zmarket.inc +++ b/src/zr/weapons/zmarket.inc @@ -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); + } } }