FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Reloaded Script (https://fileforums.com/showthread.php?t=97636)

JRD! 13-02-2016 13:54

Quote:

Originally Posted by Pulcione86 (Post 447070)
what values ​​should I put?

The max size is 1.95GB (DiskSliceSize=2100000000)

http://www.jrsoftware.org/ishelp/ind..._diskslicesize

gatosky1620 13-02-2016 14:25

please fix hte gamesixe is working bad if i set 14550 show 14.50 mb and must be 14.55 GB

JRD! 13-02-2016 14:43

Quote:

Originally Posted by gatosky1620 (Post 447074)
please fix hte gamesixe is working bad if i set 14550 show 14.50 mb and must be 14.55 GB

Work fine for me...

http://img15.hostingpics.net/pics/517062Capture.jpg

gatosky1620 13-02-2016 14:47

for me 14450 = 14.55 MB
i think is better thar the setup show Gb when MB = 1 GB

JRD! 13-02-2016 14:57

Add this function in your script, i made the choice to define megabytes...

Code:

Function MbOrTb(Byte: Extended): String;
begin
if Byte < 1024 then Result:= NumToStr(Byte) + ' MB' else
  if Byte/1024 < 1024 then Result:= NumToStr(round(Byte/1024*100)/100) + ' GB' else
    Result:= NumToStr(round((Byte/(1024*1024))*100)/100) + ' TB'
end;


JRD! 13-02-2016 15:38

1 Attachment(s)
Quote:

Originally Posted by gatosky1620 (Post 447076)
for me 14450 = 14.55 MB
i think is better thar the setup show Gb when MB = 1 GB

Ok i add for you...

coveiro 13-02-2016 19:03

1 Attachment(s)
Quote:

Originally Posted by punchao (Post 447060)
How to add GameSpace in RLDULTRA?



Here

Stor31 14-02-2016 05:52

http://nsa37.casimages.com/img/2016/...0008740266.jpg
how fix this error ???
Thxxxx

Pulcione86 14-02-2016 13:38

You can implement the languages ​​in the setup?

gatosky1620 14-02-2016 14:19

how i do to convert all this line in custom message
Code:

'Setup requires at least '+MbOrTb({#AppSize})+' of free space to install, but the'+#13#10+'selected drive only has '+MbOrTb(FreeMB)+' available.'+#13#10#13#10+'Do you want continue anyway?'

JRD! 14-02-2016 20:17

Code:

[Languages]
Name: eng; MessagesFile: compiler:Default.isl

Code:

[CustomMessages]
eng.DiskSpaceLabel=At least %1 of free disk space is required.
eng.DiskSpaceLabelWarning=Setup requires at least %1 of free space to install, but the %2selected drive only has %3 available.%4Do you want continue anyway?

Code:

[_CODE]
FmtMessage(CustomMessage('DiskSpaceLabel'), [MbOrTb({#GameSize})]);
FmtMessage(CustomMessage('DiskSpaceLabelWarning'), [MbOrTb({#GameSize}), #13#10, MbOrTb(FreeMB), #13#10#13#10])

I made the changes to the first page...

JRD! 14-02-2016 21:59

Quote:

Originally Posted by Stor31 (Post 447092)

You use what script?

Stor31 15-02-2016 04:19

Quote:

Originally Posted by JRD! (Post 447114)
You use what script?

I'm sorry :o
bad handling of my part :rolleyes:
it's good ...
thank you very much
it works
Perfectly :D:D

ramazan19833 17-02-2016 10:10

[Icons]
Name: "{group}\{#GameName}"; Filename: "{#GameExeName32}"; Check: Not IsWin64; Tasks: groupicon;
Name: "{commondesktop}\{#GameName}"; Filename: "{#GameExeName32}"; Check: Not IsWin64; Tasks: desktopicon;
Name: "{group}\{#GameName}"; Filename: "{#GameExeName64}"; Check: IsWin64; Tasks: groupicon;
Name: "{commondesktop}\{#GameName}"; Filename: "{#GameExeName64}"; Check: IsWin64; Tasks: desktopicon;

HELP GAME DESKTOP

JRD! 17-02-2016 15:52

Quote:

Originally Posted by ramazan19833 (Post 447198)
[Icons]
Name: "{group}\{#GameName}"; Filename: "{#GameExeName32}"; Check: Not IsWin64; Tasks: groupicon;
Name: "{commondesktop}\{#GameName}"; Filename: "{#GameExeName32}"; Check: Not IsWin64; Tasks: desktopicon;
Name: "{group}\{#GameName}"; Filename: "{#GameExeName64}"; Check: IsWin64; Tasks: groupicon;
Name: "{commondesktop}\{#GameName}"; Filename: "{#GameExeName64}"; Check: IsWin64; Tasks: desktopicon;

HELP GAME DESKTOP

I dont understand the question, sorry.


All times are GMT -7. The time now is 16:46.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com