errr
why do you put an switch structure if you do 3 times the same thing ?
i see no difference in the models you put in each case part ?
Code:
// Weapon ID, Ammo, Clip
new clip, ammo, wpnid = get_user_weapon(id,clip,ammo)
you dont need the "clip, ammo" because it also works alone with "id"
Code:
// Team
new team = cs_get_user_shield(id);
that wont work because it returns 1 or 0, just 1 if you are carrying a shield and 0 if you dont
Code:
if (wpnid == SHIELD)
that wont work because wpnid is an integer and not a word
-------------------------
added a fixed plugin (above errors), didnt have teh time to test it out