Greeting, I've got a question, why not put setinfo directly but only through a cvar?
Why this method is not good?
Code:
get_user_info(id, "setinfo ^"_pw^"", passfield, 31) or get_user_info(id, "setinfo _pw", password, 31)
get_user_info(id, passfield, password, 31)
Also what method works only
Code:
get_pcvar_string(cvarpassfield, passfield, 31)
get_user_info(id, passfield, password, 31)