Quote:
Originally Posted by yagami
This here seems to work but now I have another problem when I spend my money it doesn't give me back the value I should have from the das cvars
|
Replace
PHP Code:
cs_set_user_money(id, clamp(( cs_get_user_money( id ) + get_pcvar_num(pCvar_ctf_spawnmoney)), get_pcvar_num(pCvar_mp_startmoney), 16000))
With
PHP Code:
cs_set_user_money(id, clamp(( iStartMoney + get_pcvar_num(pCvar_ctf_spawnmoney)), get_pcvar_num(pCvar_mp_startmoney), 16000))
__________________