Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-03-2012, 08:12
darshana darshana is offline
Registered User
 
Join Date: Feb 2011
Location: SriLanka
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
darshana is on a distinguished road
AT yener90

When the background slideshow is displayed the black area below the image is lager than the black area above the image.I think the image is not in the center of the screen.I temporally fixed that by editing a line in the script.(by adding 50 pixels to the top position). I don't know if this is a permanent solution .

Top:= GetSystemMetrics(1) /2 - BackgroundPicSizeCalcY / 2 //original
Top:= GetSystemMetrics(1) /2 - BackgroundPicSizeCalcY / 2 +50 //edited

Last edited by darshana; 09-03-2012 at 08:19.
Sponsored Links
  #2  
Old 09-03-2012, 08:51
BAMsE's Avatar
BAMsE BAMsE is offline
The World Is Yener's
 
Join Date: Mar 2011
Location: in front of the monitor
Posts: 344
Thanks: 49
Thanked 271 Times in 91 Posts
BAMsE is on a distinguished road
darshana there is a small installer window at the bottom of screen so it looks much better if the background image is moved up... IMO...
  #3  
Old 09-03-2012, 11:01
silviugut silviugut is offline
Registered User
 
Join Date: Oct 2011
Location: Romania
Posts: 54
Thanks: 49
Thanked 4 Times in 4 Posts
silviugut is on a distinguished road
Please guys,I need an answer to this...
I tried to do a conversion with CI 7.2.5. and even I could but I noticed some minor problems with languages ​​in menu install.One of them is that in English instead of Uninstall is Deinstall (I think the only problem with English) and in Romanian instead of Dezinstalare appears Dezinstala and instead Iesire appears Capat.
How can I change the script? (do not know which, languages ​​or installer?) Although I looked into them and I changed everything I wanted to change, but nothing has changed, remain the same issues with both languages​​! I mention I copied all ISL files from Languages folder ​​in the Languages ​​folder of Inno Setup Unicode !

http://img210.imageshack.us/img210/5016/deinstall.png
http://img651.imageshack.us/img651/7...instaleaza.png

Yener90 Thanks for the work that we enjoy the rest of us!!

Last edited by silviugut; 09-03-2012 at 14:44.
  #4  
Old 09-03-2012, 11:12
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by silviugut View Post
Please gays,I need an answer to this...
I tried to do a conversion with CI 7.2.5. and even I could but I noticed some minor problems with languages ​​in menu install.One of them is that in English instead of Uninstall is Deinstall (I think the only problem with English) and in Romanian instead of Dezinstalare appears Dezinstala and instead Iesire appears Capat.
How can I change the script? (do not know which, languages ​​or installer?) Although I looked into them and I changed everything I wanted to change, but nothing has changed, remain the same issues with both languages​​! I mention I copied all ISL files from Languages folder ​​in the Languages ​​folder of Inno Setup Unicode !
Re-extract from CI.7.2.5 archive. DO NOT REPLACE THE ISL files from Inno Setup Unicode Languages folder!!!! Goto X:\CI 7.2.5\Languages folder & open english.isl / Romanian.isl look for [CustomMessages] at bottom of file, make the corrections there & save the file. No more errors!!
  #5  
Old 09-03-2012, 11:07
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
open langscript.iss and look for romplay in custom messages.

the other one is in the code section.
just search for this text.
all infos are in langscript.iss

i hope i can manage to retail 8.0.
new features: fully supported png/jpg support
unfortunately i need to code everything new :/
  #6  
Old 09-03-2012, 11:26
vlv vlv is offline
Registered User
 
Join Date: Oct 2011
Location: Europe
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
vlv is on a distinguished road
How about this one?

Quote:
Originally Posted by sulfurum1989 View Post


New Precomp 42 & Srep 3


precomp -intense -o[arc archive]arc archive.arc

Like this ,,


precomp -intense -oHL2 HL2.arc


1 creates, arc file with 0 compression -m0

2 use precomp with this commands precomp -intense -oHL2 HL2.arc ( HL2 is an example)

3 use srep with this commands srep -m2 HL2.pcf HL2.srep (srep -m2 or srep -m3)

4 Compress with Freearc , HL2.srep file compression -mx -ld1600m arc , or cab file

5 Use Yener installers for Descompresion : FreeArcFile1={src}\HL2.cab;DestDir:{app};Disk:1;Pr ecSrep:1



Credits to Bamsee
I have a question.
Should I use these paramets to every game. I'm confused because for instance with Fallout we use precomp -slow -c6 -m8 and sprep m2.
Dead Rising: precomp -slow -c189 -m16.
How do I know which paramets I should use?

Last edited by Joe Forster/STA; 23-03-2012 at 04:35.
  #7  
Old 09-03-2012, 11:39
BAMsE's Avatar
BAMsE BAMsE is offline
The World Is Yener's
 
Join Date: Mar 2011
Location: in front of the monitor
Posts: 344
Thanks: 49
Thanked 271 Times in 91 Posts
BAMsE is on a distinguished road
vlv all you need is
Code:
precomp -intense -c- filename.ext
(for older versions -slow instead -intense)

After successful operation it gives you another parameters -zl and -d (-m and - c for older versions) to speed up whole operation if somebody else tries to precompres THIS file (parameters will be different for different input files!!!)

Last edited by BAMsE; 09-03-2012 at 12:10.
  #8  
Old 09-04-2012, 06:34
leo95 leo95 is offline
Registered User
 
Join Date: Mar 2009
Location: Uruguay
Posts: 35
Thanks: 12
Thanked 2 Times in 1 Post
leo95 is on a distinguished road
Quote:
Originally Posted by BAMsE View Post
vlv all you need is
Code:
precomp -intense -c- filename.ext
(for older versions -slow instead -intense)

After successful operation it gives you another parameters -zl and -d (-m and - c for older versions) to speed up whole operation if somebody else tries to precompres THIS file (parameters will be different for different input files!!!)
What would be the command to the best compression at 042. What makes the switch. -c- as the example above
I'm trying to compress 9GB in 4GB
  #9  
Old 09-03-2012, 17:44
lupetto77's Avatar
lupetto77 lupetto77 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 87
Thanks: 1
Thanked 2 Times in 2 Posts
lupetto77 is on a distinguished road
What should I change to leave the autorun and install rimuvere images?

Thanks
  #10  
Old 09-03-2012, 21:40
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
i give up with png support...
couldnt include on my source and then started completely new.
got also problems. so no support :/
  #11  
Old 11-03-2012, 08:08
leo95 leo95 is offline
Registered User
 
Join Date: Mar 2009
Location: Uruguay
Posts: 35
Thanks: 12
Thanked 2 Times in 1 Post
leo95 is on a distinguished road
In InstallerScript What lines should I add to copy or create additional folders to specific directories during installation ej: in PES2012
1 - C: \ ProgramData \ KONAMI \ Pro Evolution Soccer 2012 \ download
2 - C: \ Users \ Leo \ Documents \ KONAMI \ Pro Evolution Soccer 2012

Where do I add this in InstallerScript
[HKEY_LOCAL_MACHINE \ SOFTWARE \ KONAMI \ PES2012]
"code" = "xxxx-xxxx-xxxx-xxxx-xxxx"
"installdir" = "C: \ \ Program Files \ \ KONAMI \ \ Pro Evolution Soccer 2012 \ \"
"Version" = "1.03.0000"
thanks
  #12  
Old 11-03-2012, 09:21
lupetto77's Avatar
lupetto77 lupetto77 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 87
Thanks: 1
Thanked 2 Times in 2 Posts
lupetto77 is on a distinguished road
sorry for English use google translate


2 things I wanted to ask

------------------------------------------------------------------------------------------------------------------
1. Also in the setup.ini file I added the file PhysX, but why not start the installation even if selected, and how do I remove

and put the check mark in other programs.

Here are the lines setup.ini:

[LauncherSettings]
InstallRedist = 1

Launch1 = DirectX
Launch164 = 0
Launch1BeforeInstall = 0
LaunchCom1 = __ Installer \ directx \ redist \ DXSETUP.exe
LaunchArg1 = / silent

Launch2 = Microsoft Visual C + + 2008 x86
Launch264 = 0
Launch2BeforeInstall = 0
LaunchCom2 = __ Installer \ vc \ vc2008sp1 \ redist \ vcredist_x86.exe
LaunchArg2 = / q: a

Launch3 = Microsoft Visual C + + 2008 x64
Launch364 = 0
Launch3BeforeInstall = 0
LaunchCom3 = __ Installer \ vc \ vc2008sp1 \ redist \ vcredist_x64.exe
LaunchArg3 = / q: a

Launch4 = PhysX
Launch464 = 1
Launch4BeforeInstall = 1
LaunchCom4 = __ Installer \ PhysX \ redist \ PhysX_9.10.0513_SystemSoftware.exe
LaunchArg4 = / quiet...
-------------------------------------------------------------------------------------------------------------------------
2. I tried installing with the skin but the image comes out of the picture and the autorun does not start splashscreen starts with what I did wrong?
I have changed so in setup.ini:

DarkISSkin=1
EnableAutorunMenu=0
EnableFastInstall=0

Last edited by lupetto77; 11-03-2012 at 09:51.
  #13  
Old 11-03-2012, 09:52
sulfurum1989's Avatar
sulfurum1989 sulfurum1989 is offline
Registered User
 
Join Date: Mar 2010
Location: spain
Posts: 50
Thanks: 0
Thanked 6 Times in 2 Posts
sulfurum1989 is on a distinguished road
and if you delete / quiet... ??
  #14  
Old 11-03-2012, 10:51
BAMsE's Avatar
BAMsE BAMsE is offline
The World Is Yener's
 
Join Date: Mar 2011
Location: in front of the monitor
Posts: 344
Thanks: 49
Thanked 271 Times in 91 Posts
BAMsE is on a distinguished road
leo95 have you InnoIDE? If not - install it. Open script in InnoIDE, there is Setup options panel on the left, choose Files & directories and click add folder icon. Use
Code:
{userdocs}\KONAMI\Pro Evolution Soccer 2012
instead
Code:
C:\Users\Leo\Documents\KONAMI\Pro Evolution Soccer 2012
To add reg entry choose Registry on this panel and click new icon
  #15  
Old 11-03-2012, 11:42
lupetto77's Avatar
lupetto77 lupetto77 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 87
Thanks: 1
Thanked 2 Times in 2 Posts
lupetto77 is on a distinguished road
PhysX_9.10.0513_SystemSoftware.exe file installation works perfectly.

What I know is how to put on and remove the checkmarks by default when I go into the installation window.

can explain line by line operation:

[LauncherSettings]
InstallRedist = 1

Launch1 = DirectX (I know)
Launch164 = 0
Launch1BeforeInstall = 0
LaunchCom1 __Installer = \ directx \ redist \ DXSETUP.exe (I know)
LaunchArg1 = / silent (I know)
Closed Thread


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 TROUBLESHOOT - Questions Here REV0 Conversion Tutorials 1565 29-11-2024 09:51
Inno Setup: Additional Libraries altef_4 Conversion Tutorials 50 21-10-2020 09:59
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Help- How to extract a .bin file compressed by a code ? Adonix Conversion Tutorials 22 22-03-2015 15:02
yener90's older Inno Project Source Codes THADEADMAN2011 PC Games - CD/DVD Conversions 0 16-06-2012 03:40



All times are GMT -7. The time now is 15:26.


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