Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #16  
Old 13-02-2016, 14:54
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by Pulcione86 View Post
what values ​​should I put?
The max size is 1.95GB (DiskSliceSize=2100000000)

http://www.jrsoftware.org/ishelp/ind..._diskslicesize
Reply With Quote
Sponsored Links
  #17  
Old 13-02-2016, 15:25
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 965 Times in 131 Posts
gatosky1620 is on a distinguished road
please fix hte gamesixe is working bad if i set 14550 show 14.50 mb and must be 14.55 GB
Reply With Quote
  #18  
Old 13-02-2016, 15:43
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by gatosky1620 View Post
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...

Reply With Quote
  #19  
Old 13-02-2016, 15:47
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 965 Times in 131 Posts
gatosky1620 is on a distinguished road
for me 14450 = 14.55 MB
i think is better thar the setup show Gb when MB = 1 GB
Reply With Quote
  #20  
Old 13-02-2016, 15:57
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
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;
Reply With Quote
  #21  
Old 13-02-2016, 16:38
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by gatosky1620 View Post
for me 14450 = 14.55 MB
i think is better thar the setup show Gb when MB = 1 GB
Ok i add for you...
Attached Files
File Type: rar main+ISFreeArcExtract4.2(MbOrTb).rar (2.77 MB, 139 views)
Reply With Quote
  #22  
Old 13-02-2016, 20:03
coveiro coveiro is offline
Registered User
 
Join Date: Dec 2014
Location: EUA
Posts: 77
Thanks: 90
Thanked 52 Times in 32 Posts
coveiro is on a distinguished road
Quote:
Originally Posted by punchao View Post
How to add GameSpace in RLDULTRA?


Here
Attached Files
File Type: rar RLDULTRA1.1.rar (4.91 MB, 163 views)
Reply With Quote
The Following 2 Users Say Thank You to coveiro For This Useful Post:
punchao (14-02-2016), Stor31 (14-02-2016)
  #23  
Old 14-02-2016, 06:52
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road

how fix this error ???
Thxxxx
Reply With Quote
  #24  
Old 14-02-2016, 14:38
Pulcione86 Pulcione86 is offline
Registered User
 
Join Date: Feb 2013
Location: Italy
Posts: 63
Thanks: 12
Thanked 6 Times in 6 Posts
Pulcione86 is on a distinguished road
You can implement the languages ​​in the setup?
Reply With Quote
  #25  
Old 14-02-2016, 15:19
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 965 Times in 131 Posts
gatosky1620 is on a distinguished road
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?'
Reply With Quote
  #26  
Old 14-02-2016, 21:17
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
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...
Reply With Quote
  #27  
Old 14-02-2016, 22:59
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by Stor31 View Post

how fix this error ???
Thxxxx
You use what script?
Reply With Quote
The Following User Says Thank You to JRD! For This Useful Post:
Stor31 (15-02-2016)
  #28  
Old 15-02-2016, 05:19
Stor31 Stor31 is offline
Registered User
 
Join Date: Aug 2013
Location: Wahranne
Posts: 323
Thanks: 1,025
Thanked 86 Times in 68 Posts
Stor31 is on a distinguished road
Thumbs up

Quote:
Originally Posted by JRD! View Post
You use what script?
I'm sorry
bad handling of my part
it's good ...
thank you very much
it works
Perfectly
Reply With Quote
  #29  
Old 17-02-2016, 11:10
ramazan19833 ramazan19833 is offline
Banned
 
Join Date: Apr 2012
Location: abc
Posts: 248
Thanks: 16
Thanked 10 Times in 8 Posts
ramazan19833 is on a distinguished road
Exclamation

[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
Reply With Quote
  #30  
Old 17-02-2016, 16:52
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
Quote:
Originally Posted by ramazan19833 View Post
[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.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple Installer Script Masquerade Conversion Tutorials 90 11-11-2024 01:49
Light Installer Script (LIS) - DiskSpan_GUI Cesar82 Conversion Tutorials 203 04-10-2024 11:48
Script collection for real beginners nordi Conversion Tutorials 3 14-02-2024 21:45
Ultimate Conversion Compressor (UCC) vollachr Conversion Tutorials 55 26-04-2021 10:27



All times are GMT -7. The time now is 21:25.


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