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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 18-09-2014, 10:04
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
Batch compressor

[Batch] inside+full file add (compatible:arc,srep,precompress043,msc)
default=only srep.


Example Compress 1/2:
Code:
arc.exe a -ep1 -dses --dirs -s; -lc- -di -i2 -r -msrep:l256+lzma:a1:mfbt4:d200m:fb128:mc1000:lc8 data.arc datafile\*

arc a -ep1 -dses --dirs -s; -lc- -di -i2 -r -msrep:l256+lzma:a1:mfbt4:d200m:fb128:mc1000:lc8 data.bin datafile\*
Example Decompress 1/2:
Code:
unarc.exe x -w.\ -dpDecompressed\ data.arc
unarc.exe x -w.\ -dpDecompressed\ data.bin

arc x -w.\ -dpDecompressed\ data.arc
arc x -w.\ -dpDecompressed\ data.bin
dataname no important
data.fileforums is equal


custom
Code:
@echo off 
for /d %%X in (datafile) do "arc" a -ep1 -dses --dirs -s; -lc- -di -i2 -r -msrep:l256+lzma:a1:mfbt4:d200m:fb128:mc1000:lc8 "Data1.bin" "%%X\*"  
pause
Attached Files
File Type: rar Bath__Compress-Decompress.rar (2.55 MB, 490 views)

Last edited by Grumpy; 26-05-2015 at 18:11.
Reply With Quote
The Following 8 Users Say Thank You to Dante1995 For This Useful Post:
ADMIRAL (21-02-2020), Baladewa (14-12-2015), ChronoCross (18-09-2014), ffmla (18-08-2016), Gehrman (19-09-2022), Mundo (16-07-2023), oltjon (10-12-2016), Stor31 (02-03-2016)
Sponsored Links
  #2  
Old 18-09-2014, 10:14
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
Black Repack

2 Version: Internal and ISDone (inno setup ee)

Info:
Slides+Video+SplashScreen+Music

idea y_thelastknight,Razor12911,Peterf

SplashTime
ShowSplashScreen(WizardForm.Handle,ExpandConstant( '{tmp}\Splash.png'),{#SplashTime1},{#SplashTime2}, {#SplashTime3},0,255,True,$FFFFFF,10);


Code System Info is Old
Attached Images
File Type: gif BlackRepack.gif (220.8 KB, 1025 views)
Attached Files
File Type: rar BlackRepack.rar (3.85 MB, 687 views)
File Type: rar BlackRepack__ISDone.rar (4.61 MB, 858 views)

Last edited by Grumpy; 26-05-2015 at 18:24.
Reply With Quote
The Following 9 Users Say Thank You to Dante1995 For This Useful Post:
ADMIRAL (04-07-2020), Andrey167 (12-12-2014), arkantos7 (23-09-2014), MOSTAPHA_VIP (23-01-2017), Mundo (16-07-2023), Noname1966 (30-11-2024), oltjon (24-09-2014), Razor12911 (22-09-2014), Simorq (27-02-2015)
  #3  
Old 18-09-2014, 10:22
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
Open Browser After Installation

Code:
[Setup]
AppName=OpenWeb
AppVersion=OpenWeb
DefaultDirName=OpenWeb_Dante1995
OutputDir=.


[Run]
//---> Open Browser After Installation + Check Confirm
//Filename: "http://YourWebSite.it/"; Flags: shellexec runasoriginaluser postinstall; Description:Open WebSite.

//---> Open Browser After Installation (does not close the Set-up)
//Filename: "http://google.com/"; Flags: shellexec runasoriginaluser

[Code_]
//---> Open Browser After Installation
procedure CurStepChanged(CurStep: TSetupStep);
var
    ErrCode: integer;
begin
    if (CurStep=ssDone) then
    begin
        ShellExec('open', 'http://google.it/', '', '', SW_SHOW, ewNoWait, ErrCode);
    end;
end;
Reply With Quote
The Following 2 Users Say Thank You to Dante1995 For This Useful Post:
Razor12911 (22-09-2014), Simorq (27-02-2015)
  #4  
Old 04-10-2014, 06:26
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
.....

.....
Attached Images
File Type: png rsor.png (160.2 KB, 654 views)

Last edited by Grumpy; 26-05-2015 at 18:42.
Reply With Quote
The Following 4 Users Say Thank You to Dante1995 For This Useful Post:
ADMIRAL (04-07-2020), Andrey167 (04-10-2014), mausschieber (04-10-2014), Razor12911 (05-10-2014)
  #5  
Old 07-10-2014, 07:07
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
zcm

zcm compression
Attached Files
File Type: rar zcm.rar (161.5 KB, 131 views)

Last edited by Grumpy; 26-05-2015 at 18:44.
Reply With Quote
The Following 6 Users Say Thank You to Dante1995 For This Useful Post:
Andrey167 (07-10-2014), arkantos7 (07-10-2014), gabrieltr (12-10-2014), mausschieber (07-10-2014), Mundo (16-07-2023), oltjon (08-11-2016)
  #6  
Old 07-10-2014, 18:49
Valtus Valtus is offline
Registered User
 
Join Date: Oct 2011
Location: rrr
Posts: 15
Thanks: 54
Thanked 8 Times in 6 Posts
Valtus is on a distinguished road
good compressor, nanozip like, how you can include in the script?
Reply With Quote
  #7  
Old 10-10-2014, 06:10
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
freearc no compatible sorry..

try this I do not know


C:\Games:
Code:
DefaultDirName={sd}\Game\FolderGamesName

Last edited by Dante1995; 28-12-2014 at 20:54.
Reply With Quote
  #8  
Old 10-10-2014, 10:12
Compiler Compiler is offline
Registered User
 
Join Date: Aug 2012
Location: A Planet called Earth.
Posts: 38
Thanks: 10
Thanked 7 Times in 7 Posts
Compiler is on a distinguished road
But you can use Isdone as well.

Code:
if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\yourfile.exe'), ExpandConstant('x -o+ "{src}\data.bin" "{app}\"'), ExpandConstant('{tmp}'), '...',false) then break;
You can edit parameters under ExpandConstant

Last edited by Compiler; 10-10-2014 at 10:14.
Reply With Quote
  #9  
Old 10-10-2014, 11:12
Dante1995 Dante1995 is offline
Banned
 
Join Date: Feb 2014
Location: Black Hole
Posts: 297
Thanks: 116
Thanked 481 Times in 162 Posts
Dante1995 is on a distinguished road
I'm not sure that it works, but try you never know
Reply With Quote
  #10  
Old 14-01-2015, 04:41
ShadowEagle's Avatar
ShadowEagle ShadowEagle is offline
Registered User
 
Join Date: Dec 2014
Location: Wonderland
Posts: 138
Thanks: 18
Thanked 21 Times in 18 Posts
ShadowEagle is on a distinguished road
Where to download your script Dante?
Reply With Quote
The Following User Says Thank You to ShadowEagle For This Useful Post:
Andrey167 (14-01-2015)
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Inno Setup: Additional Libraries altef_4 Conversion Tutorials 50 21-10-2020 09:59
Blackbox Inno Setup Script Kurutucu Conversion Tutorials 1190 18-08-2019 22:43
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Copy file with Inno Setup Script emrahcey Software 1 02-07-2010 08:24



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


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