Could someone offer me some tips on saving information on the player's PC without the player being able to find it . something really simple would be better
I was thinking about trying to save something in the registry. Is it possible to save information in the registery from hge?
The problem with saving now days is Vista you canґt write to ProgramFiles. But here is how I do it works for all versions of Windows I tried. It saves to a hidden folder so the user wonґt be able to find it without looking carefully. This also works even if not running as administator and will be carried over to other users on the computer.
//Create save folder with full permission for all users SHGetFolderPath(NULL, CSIDL_COMMON_APPDATA, NULL, SHGFP_TYPE_CURRENT, strPath ); PathAppend( strPath, TEXT("Caelum"));
No problem glad I can help, had trouble finding the info myself :) you need to link to Shlwapi.lib and the headers are. With this it doesnґt ask you it just saves. If you try to save to ProgramFiles it doesnґt ask it just doesnґt work. You shouldnґt post this in this forum though this is for showcasing.