View Single Post
Kreation
Veteran Member
Join Date: Jan 2010
Location: Illinois
Old 07-03-2010 , 15:52   Re: FVault - A new vault system!
Reply With Quote #39

If I have this code:

Code:
SaveXP(id) {      new steamid[35];      get_user_authid(id, steamid, 34);      new data[20];      num_to_str(g_xp[id], data, sizeof(data) - 1);      fvault_set_data(g_vault, steamid, data); }

and I have more to save can I just do this:

Code:
SaveXP(id) {      new steamid[35];      get_user_authid(id, steamid, 34);      new data[20];      num_to_str(g_xp[id], data, sizeof(data) - 1);      num_to_str(g_level[id], data, sizeof(data) - 1);      fvault_set_data(g_vault, steamid, data); }

Or is it more complex than that?
__________________
Hi.
Kreation is offline