You have two options, the first is to pack up everything into a big string. This can be simple like a comma separated value file or complicated... The problem with this approach is unpacking everything later. The other option is to put everything into an array and save load that. You are limited to a single data type however. I recommend you try this method. Save/Load demo attached.