this post was submitted on 14 Aug 2023
6 points (100.0% liked)

Godot

5839 readers
142 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 1 year ago
MODERATORS
 

I know that motivated people can generally crack encrypted saves, but in general, if I have some saved dictionaries which I don't want the player to be able to access directly, is an encrypted save the best way to handle this, or is there a better way?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 1 year ago* (last edited 1 year ago)

That's how I'd do it, would be best if it's encrypted in memory as well. Or at least encrypt important values so you can't edit them with Cheat Engine or similiar programs. There's also ways to make it harder to debug and reverse engineer your game if you want to look into them

But whatever you do, someone will be cheating sooner or later. No way arround that, you can only slow them down

Only exception is server sided games, but you can still create bots for those and maybe even find some way to exploit your code