I use old version of setup factory 6.0 to setup a driving registry engine but in 7.0 i am not sure how to do same thing.
Ok like this was from old installer.
Variable name:
%BodiesTextures%
value
%GamePathLocation%\Client\avatardata\bodies\textur es
in 7.0 i need to do something like this to set a registry path up.
OnePath = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\game\\The test", "InstallDir", true);
twoPath = Registry.GetValue(HKEY_LOCAL_MACHINE, "Software\\game\\testpath", "GameDir", true)
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\ware\\Patch\\Data", "InstallDir",OnePath,REG_SZ);
Registry.SetValue(HKEY_LOCAL_MACHINE, "Software\\ware\\Patch\\Data", "GameDir",Game,twoPath,REG_SZ);
I need to set twoPath with onePath in one line to the registry so how would I do this in 7.0?


