TiAm - agreed - that would be awesome! Thanks for the info everyone. Ribis - how would you go about encrypting the values?
There are two plugin for that... you select a key, and from this, you can encrypt the value when you will save a string...when construct2 will try to open the new string, the plugin convert the string in a correct value (with a correct key),
this is an example, I try to find the plugin, when I get home I will link the plugin
anyway, you can try to save the data in different way, I mean, if you need to store some coins, like 50, you can save like this:
"23y9812yu3982u" this is to get confused, just random string "50" real value "u23u2undu" a new random string"25" check if they hack the coin "u3342uy2382938" random string
without encrypt, you can make your own secure script... can be difficult, but can get harder to hack a single value...
50 is the real coin, construct count just the 50, if they hack it, a function check if a coin/2 is = to 25 o close to it... so, they need to hack 2 value, but the original string will be:
23y9812yu3982u50u23u2undu25u3342uy2382938
construct2 will count the "u" tokenat, you now where the 50 and 25 are, for example
and if you store like 5 variable, you will get a long string... and you can mix it... but there is a plugin to encrypt, so, this is just for fun