Quote:
Originally Posted by Bugsy
nvault_set(g_Vault, vaultkey, pub_Stats[id][STATSCOUNT]);
Looks like here you are attempting to write an integer value? If so you must first convert to string.
|
Yes, it's an integer, thank you very much, I'll compile and try it.
PHP Code:
new Stats[63];
num_to_str(pub_Stats[id][STATSCOUNT], Stats, charsmax(Stats) )
nvault_set(g_Vault, vaultkey, Stats);
Correct?
__________________