Thanks for the quick reply guys!
Any file that you save is editable, even the game exe itself. But if you mean if it is readable by human, then no, Array saves in binary format.
Don't worry about players modifying the game to cheat - if they want to cheat, they WILL find a way. There are programs that allow them to search the memory and adjust values, such as health, current experience etc.
Focus on your game first!
Thanks. I've never used the array object before, so it should be interesting. I can't stop the dedicated cheaters, but I can always stop the average Joe from modifying it
Also - perhaps there's a way to find formulas for the levels - will take a little time, will save some time later if you decide to change the level structure.
Like,
Strength adds 3 each level? Strength = Level*3
Agility adds 1 every 3 levels? Agility = Floor(level/3)
If you want exponential growth just have something like: Health = Level*30*1.25
Etc.
If I can't get it working well with the array object, I'll probably just do it this way. Though the reason why I opted for a preset system is to have more control over my stats.