Hey guys, I created plugin that gives players specific item/weapon on round start.
Now the problem is that I can't give them shield (tactical shield for CT), with give_item(id, "weapon_shield") function. At round start it strips their weapons so I thought it was because of that, I used this fix:
PHP Code:
StripWeapons(id)
{
const m_fHasPrimary = 116
strip_user_weapons(id)
set_pdata_int(id, m_fHasPrimary, 0)
}
that I found on forum posted by Connor (I think) but it still doesn't work. What could block shield? And does shield model need to be precached first?