Post errors here next time.
Code:
if (cs_get_user_money(id)) > (get_pcvar_num(spyCost))
cs_set_user_money(id, cs_get_user_money,(id) - (get_pcvar_num(spyCost));
->
if (cs_get_user_money(id) > (get_pcvar_num(spyCost)) )
cs_set_user_money( id, ( cs_get_user_money(id) - get_pcvar_num(spyCost) ) );
I hope you will figure other errors.
__________________