theres no pev_startmoney

maybe its set_cvar_num() that u want?
and i think u should use this instead of get_cvar_num(), though it doesnt give a warning from it..
Code:
get_cvar_float("sv_gravity")
EDIT: ehh, of course not set_cvar_num(), how bout this?
Code:
new money = 16000 / get_cvar_num("mp_startmoney")
cs_set_user_money(i, money, 1)
__________________