Hello...
I have default cvar of value 4
Code:
farba = register_cvar("farbahud", "4")
And I would like to make following:
One player would have
Code:
set_pcvar_num( farba , 3 );
and the second
Code:
set_pcvar_num( farba , 2 );
simultaneously for example.
That means I need to make those cvars individual to all players, it would not be just server cvar, but every player will have his own individual value of cvar. Thanks