How would I use get_user_weapons to retrieve more than one weapon.
I want to use this:
PHP Code:
if( gToss == true && get_user_weapon(id) != CSW_DEAGLE )
{
strip_user_weapons(id)
give_item( id, "weapon_deagle" )
cs_set_weapon_ammo( id, 0 )
cs_set_user_bpammo( id, CSW_DEAGLE, 0 )
}
But I want it to execute those commands if they player has a weapon other than a Deagle AND a Knife, not just a deagle.
__________________