|
#1411
|
||||
|
||||
|
Quote:
Be aware that the commands used do not ask for confirmation. |
| Sponsored Links |
|
#1412
|
||||
|
||||
|
Quote:
Thanks for info. |
|
#1413
|
||||
|
||||
|
If you want, send me the script by PM that I take a look.
|
|
#1414
|
|||
|
|||
|
[QUOTE=bunti_o4u;486495]Thanks.. It worked with my script. But it throwing weird output don't know why.
https://docs.microsoft.com/en-us/win...dconsoleoutput |
|
#1415
|
||||
|
||||
|
Quote:
|
|
#1416
|
|||
|
|||
|
No it's correct you need to use ReadConsoleOutputW for exact output
|
|
#1417
|
||||
|
||||
|
I have shared the script...
Quote:
I think it is writing the output per second.... Ideally it should write output if there is change in output string.. Last edited by bunti_o4u; 23-06-2020 at 07:41. |
|
#1418
|
||||
|
||||
|
Why
![]() ![]()
__________________
Haters gonna hate
|
|
#1419
|
|||
|
|||
|
I guess it's from the ASIS.
Could you send the entire code? I don't get that warning when compiling any version of it Edit: I get it as well with compact mode = 1, that code it's not used after preprocessing (ISPP), that's why it give you that warning The code after line 4503 shown in the screen it's not present during the compiling Last edited by pincoball; 26-06-2020 at 12:16. |
|
#1420
|
||||
|
||||
|
I already got it
![]() But it's not that bad anyway. I was just courios.
__________________
Haters gonna hate
|
|
#1421
|
||||
|
||||
|
Was this capture not made before recompiling (Previous Debug)?
You would not have been able to compile with the variable ReloadComponents outside the area defined in the ISPP Code:
ReloadComponents: = False; Code:
#if UseComponents == "1" Code:
var
//////////////////////// Check boxes ////////////////////////
IconsCB, StartMenuCB, {#if CheckCRC == "1"}CRCCheckCB,{#endif} PauseCB, UninstallCB, LimitRAMCB: TNewCheckBox;
|
|
#1422
|
|||
|
|||
|
i have problem with xtool unpack
i use this method code to Compress Code:
-mxprecomp+srep:m3f:a16:d1g+lolz:dtb1:d128m:mtt1:mt8:tt8:mc1023:fba0 and this arc.ini fail Code:
[External compressor:lolz]
header = 0
packcmd = lolz_x64.exe {options} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
[External compressor:srep]
header = 0
packcmd = srep64 {-option } $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep64 -d -s -- <stdin> <stdout>
[External compressor:xprecomp]
header = 0
packcmd = xtool.exe e:precomp:t90p:zlib - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xzlib]
header = 0
packcmd = xtool.exe e:precomp:t90p,c128mb:zlib - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xzstd]
header = 0
packcmd = xtool.exe e:precomp:t90p:zstd - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xlz4]
header = 0
packcmd = xtool.exe e:precomp:t90p:lz4 - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
[External compressor:xlzo]
header = 0
packcmd = xtool.exe e:precomp:t90p:lzo - - <stdin> <stdout>
unpackcmd = xtool.exe d:precomp:t4 - - <stdin> <stdout>
but this error when use any Script to unpack ![]() ![]()
|
|
#1423
|
||||
|
||||
|
Quote:
RC_ERRCODE_INVALID_COMPRESSOR= -2; (* Invalid compression method or parameters *)
__________________
It would be nice if you appreciate my work with the thanks Button |
|
#1424
|
|||
|
|||
|
Hi guys
I am a beginner at this, I am trying to repack a 60gb game (Heat) and I am confused on how to add FreeARC to my installer. Can someone give me a tutorial? I am super interested in repacking/compressing games. Can you send me some guides through private message? Thanks |
|
#1425
|
|||
|
|||
|
Hi all, dipping my feet back into the Inno pool again - I have gotten to the point where I am trying to add a label, but the label does not show up. Perhaps I am missing something?
[CODE] Code:
var DesktopIconCheckBox: TNewCheckBox; Progress: TNewProgressBar; RequiredLabel: TLabel; Code:
Requiredlabel := TLabel.Create(WizardForm);
with Requiredlabel do
begin
SetBounds(10, 160, 390, 25);
RequiredLabel.Caption := ExpandConstant('{cm:RequiredSpace} {#Size}');
end;
Code:
procedure CurPageChanged(CurPageID: integer); begin if CurPageID = wpWelcome then begin Progress.Hide; RequiredLabel.Show; end; ![]() The pink highlights were the label is meant to be. |
![]() |
|
|
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 |