@Axarion
Use this code to remove saves:
[CustomMessages]
it.removemsg=Type here your italian message
en.removemsg=Do you wish to remove game saves?
de.removemsg=Type here your german message
es.removemsg=Type here your spanish message
fr.removemsg=Type here your french message
ru.removemsg=Type here your russian message
cs.removemsg=Type here your Czech message
pl.removemsg=Type here your polish message
hu.removemsg=Type here your Hungarian message
[Code]
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
if CurUninstallStep = usPostUninstall then
begin
if MsgBox(ExpandConstant('{cm:removemsg}'), mbConfirmation, MB_YESNO)=IDYES then
begin
DelTree(ExpandConstant('{userdocs}'+'\GHOSTBUSTERS (tm)'), True, True, True);
end;
end;
end;