|
|
|
#1
|
|||
|
|||
|
Hello y_thelastknight,
Do you AGB Golden Team compression method (parameter)? Last edited by danswano; 05-04-2013 at 16:01. |
| Sponsored Links |
|
#2
|
|||
|
|||
|
Use -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
|
|
#3
|
|||
|
|||
|
Ah dude, this method is very common and can be found everywhere, i can't achieve a smaller size with repacks.
Do you have something better for better compression ratio? |
|
#4
|
|||
|
|||
|
thank, i want to known how yener90 can create compress.bat to create repack. In topic of Kurutucu blackbox script. In don't know how to create repack with hight compress file with arc. Can you help me?
|
|
#5
|
|||
|
|||
|
i want to ask some question. Yener90 how can create interface setup, can you help me to create this same blackbox repack!Thank!
|
|
#6
|
||||
|
||||
|
use botva2
|
|
#7
|
|||
|
|||
|
i don't known this, can you help me!
|
|
#8
|
|||
|
|||
|
Hello dear Razor,
I have a problem with your last mod to install destination hack you provided: if i use for example this name: #define AppName "Clive Barker's Jericho" i get this error: Unknown identifier 's' but like this #define AppName "Clive Barkers Jericho" everything is fine is it possible to use such names? |
|
#9
|
||||
|
||||
|
never use apostrophes. the inno preprocessor projects what ever is written to the specified point, now if you include an apostrophe, it is like you are breaking a circle of some sort, for example in a situation like this.
ExpandConstant('{#appname}'); then it will be like this, ExpandConstant('Clive Barker's Jericho'); now there are there apostrophes, like in English but called quotation marks, when you quote, there has to be an opening quotation and the closing quotation, he asked "who wants to die tonight?" |
|
#10
|
||||
|
||||
|
In Pascal, an apostrophe character inside a string literal needs to be doubled:
Code:
#define AppName "Clive Barker''s Jericho"
__________________
Joe Forster/STA For more information, see the FileForums forum rules and the PC Games forum FAQ! Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply! Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back! |
|
#11
|
|||
|
|||
|
Quote:
|
|
#12
|
||||
|
||||
|
Quote:
__________________
Joe Forster/STA For more information, see the FileForums forum rules and the PC Games forum FAQ! Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply! Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back! |
| The Following User Says Thank You to Joe Forster/STA For This Useful Post: | ||
danswano (08-04-2013) | ||
|
#13
|
||||
|
||||
|
Ok guys I tested the code to give a folder icon to the installer.
The code and this attached to that of yenner90 section put a personal icon file in the folder include call Desktop.ico ;********************name icon file********************************; [Files] Source: Include\Desktop.ico; DestDir: {app}; Flags: ignoreversion; Attribs: hidden system ;************************************************* *************; code section find CurStepChanged try and replace it with this add the red section ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// procedure CurStepChanged(CurStep: TSetupStep); var n,i:integer; ErrorCode: Integer; begin if CurStep = ssPostInstall then begin SetIniString('.ShellClassInfo', 'IconResource', ExpandConstant('{app}\Desktop.ico') + #13#10 'IconIndex=0', ExpandConstant('{app}\desktop.ini')); Exec('attrib', ' +r ' + '"' + ExpandConstant('{app}') + '"', '', SW_HIDE, ewWaitUntilTerminated, ErrorCode); Exec('attrib', ' +h +s ' + '"' + ExpandConstant('{app}\desktop.ini') + '"', '', SW_HIDE, ewWaitUntilTerminated, ErrorCode); end; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Find CurUninstallStepChanged try and add first end; highlighted in red end; end; procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep); begin //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Final code Uninstall.dat try and add the red section ExpandConstant('{tmp}\Uninstall.dat'))), True, True, True); DeleteFile(ExpandConstant('{app}\desktop.ini')); end; end; end; end; end; |
| The Following User Says Thank You to nicola16 For This Useful Post: | ||
Razor12911 (08-04-2013) | ||
|
#14
|
||||
|
||||
|
anyone can tell me how to fix an srep error.
Code:
broken compressed data. error code:-12
__________________
always above all, keep in mind that some day you will die. Bushido. |
|
#15
|
||||
|
||||
|
bottom, line, never use special characters
|
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |