diff --git a/src/zr/weapons/zmarket.inc b/src/zr/weapons/zmarket.inc index 038037c..7b08795 100644 --- a/src/zr/weapons/zmarket.inc +++ b/src/zr/weapons/zmarket.inc @@ -918,8 +918,15 @@ stock bool:ZMarketEquip(client, const String:weapon[], bool:rebuy = false) } } - // Give client the weapon. - GivePlayerItem(client, weaponentity); + if (StrEqual(weaponentity, "item_kevlar")) + { + SetEntProp(client, Prop_Send, "m_ArmorValue", 100); + } + else + { + // Give client the weapon. + GivePlayerItem(client, weaponentity); + } // Update cookie with new weapon. ZMarketSetRebuyCookie(client, slot, weapon);