I'm creating a 2D MMORPG game (in an applet form) and I had a simple question.
I understand that for security purposes as a general anti-hacking technique, the clients should contain the least amount of logical data as possible (so it cannot be manipulated and exploited).
My question is this: Lets say I send data from a server to a client (which is happening quite frequently one would presume). In my client code that received the packet, I parse said packet into its "chunks" and store that data logically in their accurate counter-parted variable. Lets say that one of the variables stores the health of a player. Does that mean that this variable is practically unusable for calculations - in the sense that since it is a logical piece of data (and can be therefore manipulated since it is stored on the client), and that the sole alternative is to read the packet containing the information pertaining the health if I were to ever require the health amount?
Thank you for taking the time to read my question. -Bryan