Code:
new vaultkey[32], name[32]
formatex(vaultdata, charsmax(vaultdata), "%s %s", name, vaultkey)
The problem was that you were using [id], this specifies the cell from where to start, but you want to start from the beginning. Here using "id" is wrong, you don't have a bi-dimensional array. Probably you were testing alone, so your index was 1, and it become name[1], which cut the first char.
Also instead of 33 you can use 32, that's the max chars a name can have.
@redivcram, why do you keep posting if you can't help ?
__________________