Hi,
I am planning to work on some online multi-player mini games that are made in C2, but before I start, I needed to check whether it was possible for players to temper with the variables of the games and such, since a lot of data are client side and the server can't be controlling them.
So I've made some tests on a random game from the Arcade section, and figured out that everything was exposed to me as a player:
------------------
This is an unminified test subject : https://www.scirra.com/arcade/adventure ... free-10760
-----------------
Here is another test subject which is minified: https://www.scirra.com/arcade/action-ga ... -run-14758
----------------
You can see from the scores tables my score.
Is it possible to make the c2runtime object unaccessible from the console ?
Are there any side effects of Object.freeze ?
Thanks