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)

mertderler 08-02-2016 09:25

Reloaded Script
 
Reloaded Scrip repack necessary :)

JRD! 12-02-2016 06:51

5 Attachment(s)
CHANGELOG
------------------------------------------------
Update 1.02:
-Fixed UninstallDisplayIcon in ControlPanel
-Added define "CompressionType" internal/external
-Added define "SetVol" Set the value of the music volume
-Added define "GameSizeValue" Possibility to choice GameSizevalue in MB or GB
-Added define "DataDiskDependency" (Associate data to a disk, if you cut into several dvd)
-Added define "DvdFormatSize" DVD5/DVD9 (Internal compression only)
-Added define "CheckRedist" Auto/Manual
------------------------------------------------
Update 1.01:
-Fixed Minors buggs
-Added DiskSpaceLabel & DiskSpaceLabelWarning in CustomMessages
------------------------------------------------

coveiro 12-02-2016 13:06

1 Attachment(s)
great script, I added ultra arc: d

gatosky1620 12-02-2016 16:17

Quote:

Originally Posted by JRD! (Post 447022)
ISFreeArcExtract module support added...

using external: when i want unistall not delete the files extracted from Data#, and is neccesary add the set option "need space"

mertderler 13-02-2016 07:37

Quote:

Originally Posted by JRD! (Post 447016)
Just have to integrate ISDone or ISFreeArcExtract...

Thanks brothers

Stor31 13-02-2016 09:11

Quote:

Originally Posted by JRD! (Post 447049)
Fixed UninstallDelete and GameSpace...

thx JRD! ;);)
but how compressor internal :confused::confused:

JRD! 13-02-2016 10:52

Internal Fixed, just ISPP error...

http://img4.hostingpics.net/pics/359...ompression.jpg

JRD! 13-02-2016 11:17

If using internal compression, "Out of memory " appears, you can turn off like this:

http://img4.hostingpics.net/pics/452958disableLZMA.jpg

Or better adjust settings depending on your configuration:

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

Pulcione86 13-02-2016 11:33

I have a problem
I have a 3.70 gb files and using internal compression ..

At some point it always fails , saying that I must enable diskspanning .
Actually that is already enabled ..

This is the configuration

DiskSpanning = yes
SlicesPerDisk = 5
DiskSliceSize = 1708200000

JRD! 13-02-2016 11:38

OK, you try with the lastest version?

or edit like this:
http://img4.hostingpics.net/pics/359...ompression.jpg

Pulcione86 13-02-2016 11:42

Quote:

Originally Posted by JRD! (Post 447059)
OK, you try with the lastest version?

or edit like this:
http://img4.hostingpics.net/pics/359...ompression.jpg

I'm using the script called main+ISFreeArcExtract ..

I have already put the configuration in the screen but it still gives me error

JRD! 13-02-2016 11:51

Quote:

Originally Posted by Pulcione86 (Post 447061)
I'm using the script called main+ISFreeArcExtract ..

I have already put the configuration in the screen but it still gives me error

I packed an 6Gb+ data, success...
http://img4.hostingpics.net/pics/60159493ok.jpg

Pulcione86 13-02-2016 12:36

I try.
Do you know

Pulcione86 13-02-2016 13:28

Now all is well , thank you :)

Last thing , how can I do to split files into pieces from 3.89 gb ?

Pulcione86 13-02-2016 13:40

what values ​​should I put?

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.

ramazan19833 17-02-2016 17:19

desktop shortcut to the game ?

ramazan19833 17-02-2016 17:38

1

http://i.hizliresim.com/yLy2Ok.jpg

2

http://i.hizliresim.com/VvZ2jv.jpg

DESKTOP SHORTCUT TO THE GAME ?

JRD! 17-02-2016 17:44

Quote:

Originally Posted by ramazan19833 (Post 447211)
desktop shortcut to the game ?

Indicate the name of the executable of the game:

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

http://img15.hostingpics.net/pics/379992Capture2.jpg

JRD! 17-02-2016 17:49

Quote:

Originally Posted by ramazan19833 (Post 447214)

You are doubled the dots:

http://img15.hostingpics.net/pics/19920839sf.jpg

ramazan19833 17-02-2016 18:00

[B]M&S_Kompressor_1.2 Reloaded Scrip arc.ini? [/B]
 
M&S_Kompressor_1.2 Reloaded Scrip arc.ini?

JRD! 17-02-2016 18:11

Quote:

Originally Posted by ramazan19833 (Post 447217)
M&S_Kompressor_1.2 Reloaded Scrip arc.ini?

I can't do anything for you bro.

ramazan19833 17-02-2016 18:12

:)Thank you

ramazan19833 17-02-2016 18:39

M&S_Kompressor_1.2 Reloaded Scrip arc.ini?
 
M&S_Kompressor_1.2 Reloaded Scrip arc.ini?

:confused:http://i.hizliresim.com/28MQvO.jpg

JRD! 17-02-2016 18:51

Quote:

Originally Posted by ramazan19833 (Post 447223)
M&S_Kompressor_1.2 Reloaded Scrip arc.ini?

:confused:http://i.hizliresim.com/28MQvO.jpg

These compression methods must be supported with the integration of UltraArc module, try with UltraArc integration: RLDULTRA

coveiro 17-02-2016 20:38

1 Attachment(s)
Version 1.2 for M & S Kompressor there may be bugs!


All times are GMT -7. The time now is 08:03.

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