View Single Post
  #12  
Old 23-06-2009, 07:53
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
@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;



Last edited by peterf1999; 23-06-2009 at 08:37.
Reply With Quote