I haven't done anything with the code, I just pointed to where your problem actually is.
You have to move the lines i highlighted.
For example:
Code:
case 0:
{
give_item( id, "weapon_elite" )
cs_set_user_bpammo( id, CSW_ELITE, 120 )
if(is_user_connected( id ) && ( get_user_level(id) == 0))
}
I'm guessing it should really be:
Code:
case 0:
{
if(is_user_connected( id ) && ( get_user_level(id) == 0))
{
give_item( id, "weapon_elite" )
cs_set_user_bpammo( id, CSW_ELITE, 120 )
}
}
__________________