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

Reply
 
Thread Tools Search this Thread Display Modes
  #991  
Old 03-05-2021, 11:13
alucard1973 alucard1973 is offline
Registered User
 
Join Date: Apr 2015
Location: Madrid
Posts: 45
Thanks: 1
Thanked 3 Times in 3 Posts
alucard1973 is on a distinguished road
Quote:
Originally Posted by pratikpatel8982 View Post
I am supposing that you want to install each component in a different folder inside the {app} directory but so far I haven't found such feature in this script.
If you want to install in specific directory just compress the files with the folder structure. For example, you want to install component 1 inside {app}\Component1\
You can't specify it. For this to work, you need to pack file with folder structure. For example, in component1.arc:
Code:
Component 1\file1,file2......file10
So after extraction, it will automatically extract inside {app}\component1\file1,file2......file10.
ok thanks
Reply With Quote
Sponsored Links
  #992  
Old 03-05-2021, 12:28
alucard1973 alucard1973 is offline
Registered User
 
Join Date: Apr 2015
Location: Madrid
Posts: 45
Thanks: 1
Thanked 3 Times in 3 Posts
alucard1973 is on a distinguished road
I would like to know, if I provided my blackbox script that I had to modify, could you help me on the subject of scaling, I mean that since I have a 4k screen, I have to put Windows at 200% and I can't adapt the code to match the resolution. when I run my setup, it is obviously very small with the icons to move, I adapted with this script for practically everything except for the scaling and the setup.dll that I don't think it is too complicated to make it adapt with my blackbox.
Thank you

Last edited by alucard1973; 03-05-2021 at 12:31.
Reply With Quote
  #993  
Old 03-05-2021, 19:05
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
Quote:
Originally Posted by alucard1973 View Post
I would like to know, if I provided my blackbox script that I had to modify, could you help me on the subject of scaling, I mean that since I have a 4k screen, I have to put Windows at 200% and I can't adapt the code to match the resolution. when I run my setup, it is obviously very small with the icons to move, I adapted with this script for practically everything except for the scaling and the setup.dll that I don't think it is too complicated to make it adapt with my blackbox.
Thank you
Yes, I also want to use it with CorePack Script by BlackFire69 but it doesn't support setup.dll. But I can't help you with scaling stuff since I don't know coding.
Reply With Quote
  #994  
Old 04-05-2021, 06:38
drcool drcool is offline
Registered User
 
Join Date: Mar 2021
Location: Canada
Posts: 6
Thanks: 0
Thanked 1 Time in 1 Post
drcool is on a distinguished road
Quote:
Originally Posted by drcool View Post
Hello! Is it possible for ASIS to decompress archives with a password? (Not someone elses, archives, archives created by myself with a password) I can't seem to find anything about it in settings.ini or the script.
bump...
Reply With Quote
  #995  
Old 04-05-2021, 08:11
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Quote:
Originally Posted by drcool View Post
bump...
Example

Code:
if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, '', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then

to

if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, 'YourPassword', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then
__________________
Haters gonna hate
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
Cesar82 (04-05-2021), pratikpatel8982 (04-05-2021)
  #996  
Old 05-05-2021, 15:31
drcool drcool is offline
Registered User
 
Join Date: Mar 2021
Location: Canada
Posts: 6
Thanks: 0
Thanked 1 Time in 1 Post
drcool is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Example

Code:
if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, '', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then

to

if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, 'YourPassword', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then
Am i looking in the wrong place? I cannot find that exact line to change it to that.
Reply With Quote
  #997  
Old 05-05-2021, 20:38
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Quote:
Originally Posted by drcool View Post
Am i looking in the wrong place? I cannot find that exact line to change it to that.
Line 4097
__________________
Haters gonna hate
Reply With Quote
  #998  
Old 06-05-2021, 05:49
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Example

Code:
if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, '', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then

to

if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, 'YourPassword', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then
Hey, If possible can you add it like other settings so that it can be modified using settings.ini
For example, create a password section:
Code:
[Password]
Enabled=1
Password=YourPassword
BTW, I don't mind modifying the script, but it would be a great addition to ASIS if it will be supported by default. And I think it should not be too difficult to implement. Just need to modify Settings.iss and script.iss

Last edited by pratikpatel8982; 06-05-2021 at 05:53.
Reply With Quote
  #999  
Old 06-05-2021, 07:43
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
I don't working on the script anymore.

But you're right, only things to be added is in Settings.iss, Settings.ini and script.iss. Very simple.
__________________
Haters gonna hate
Reply With Quote
The Following 3 Users Say Thank You to KaktoR For This Useful Post:
:( Sad8669 (06-05-2021), GaMEr_2077 (06-05-2021), pratikpatel8982 (06-05-2021)
  #1000  
Old 06-05-2021, 15:00
mr_gnar's Avatar
mr_gnar mr_gnar is offline
Registered User
 
Join Date: Oct 2020
Location: America
Posts: 13
Thanks: 1
Thanked 6 Times in 4 Posts
mr_gnar is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Example

Code:
if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, '', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then

to

if not ISArcExtract(0, 100, ExpandArcFile(Data[i - 1].Arc[1],SourceDir), Data[i - 1].Arc[2], '', false, 'YourPassword', ExpandConstant('{tmp}\Arc.ini'), Data[i - 1].Arc[2], false) then
Would this be possible with an older version like 7.2.0? I saw this and I wanted to try adding this, but I still have issues with the newest version of ASIS. In the script, this exact line is there, but instead of ExpandArcFile, it's UpdateSource. Adding the password part set to the password of the test archive makes it start to read the files, but gets stuck at 0.
__________________
Stretched to breaking an obscene canvas on a stretcher of parasitism.

Last edited by mr_gnar; 06-05-2021 at 15:03.
Reply With Quote
  #1001  
Old 08-05-2021, 06:49
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
How to configure compressor.ini for razor mtx??

How to configure compressor.ini for razor mtx??
Reply With Quote
  #1002  
Old 08-05-2021, 07:00
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
Hi, I compressed a game using diskspan gui with pzlib3:m1+srep_new+razor_mtx. It was compressing fine but at last an error popped up (when razor_mtx) was compressing, it was something about memory reference or something like that, an in the conversion output folder, the .001 file was created but records.ini was not created, so I created it myself but when I extract it, I get crc mismatch error.

So now I've removed razor_mtx (which created error) and compressing again using plzib3 only..... (Hoping to not get any crc error again....)

EDIT: I've compressed the files again using pzlib3 only using diskpan 1.0.0.4 and it still gave CRC error. So the error was because of pzlib3 and I will post in its corresponding thread. Thank You!

Last edited by pratikpatel8982; 08-05-2021 at 09:28.
Reply With Quote
  #1003  
Old 21-05-2021, 07:05
L33THAK0R's Avatar
L33THAK0R L33THAK0R is offline
Registered User
 
Join Date: Feb 2021
Location: Saudi Arabia
Posts: 406
Thanks: 137
Thanked 117 Times in 70 Posts
L33THAK0R is on a distinguished road
UPDATE: it seems like MSC might be causing some trouble rather than XTool v0.3.9

Hi all,

I recently did a conversion of the original painkiller games using

Code:
msc (:mp3=1:wav=1:raw=1:bmf=9:tak=9:bmp=1:lzma,bt4,fb128,lc8) + XTool 2020 (xzlib) + srep + lolz
and tried to jerry-rig ASIS v7.2.0 (v7.2.2a was giving me grief despite the forum users who tried to help with my issues) to work with XTool 2020, by replacing the xtool .exe and .dll's of ASIS v7.2.0, in their existing directories, with the .exe & .dll's that were in the resources directory for xtool v0.3.9, and additionally editing the ASIS arc.ini unpackcmd string as follows:
Code:
[External compressor:xprecomp,xZLib,xzlib,xLZ4,xlz4,xLZO,xlzo,xZSTD,xzstd,kraken]
header    = 0
unpackcmd = XTool decode -t100p-1 - - <stdin> <stdout>
My issue is that the installer during decompression exits at ~1.5%, with no error code. It's a long shot but I was wondering if anyone might be able to help out, as I have some conversions currently running that are using XTool v0.3.9 features and formatting not available (as far as I know) with the previous version of XTool I was using.

Thank you for anyone taking the time to read this, any help would be greatly appreciated

Last edited by L33THAK0R; 21-05-2021 at 23:22.
Reply With Quote
  #1004  
Old 31-05-2021, 10:15
mr_gnar's Avatar
mr_gnar mr_gnar is offline
Registered User
 
Join Date: Oct 2020
Location: America
Posts: 13
Thanks: 1
Thanked 6 Times in 4 Posts
mr_gnar is on a distinguished road
Unhappy

Quote:
Originally Posted by mr_gnar View Post
Would this be possible with an older version like 7.2.0?
Still wondering about this. 7.2.2 is still giving me issues, and for some reason, stuff just "works" under 7.2.0, but I still can't get archives set with a password to work with either. 7.2.2 keeps refusing my records.ini and extracts nothing, and 7.2.0 just says "wrong password".
__________________
Stretched to breaking an obscene canvas on a stretcher of parasitism.
Reply With Quote
  #1005  
Old 31-05-2021, 15:18
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
ASIS.v7.2.2a

@Kaktor, the last version of A.S.I.S. is THIS.
Reply With Quote
Reply


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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Portable Installer Inno Setup Script y_thelastknight Conversion Tutorials 59 23-10-2020 00:02
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Simple Arc Installer 78372 Conversion Tutorials 1 15-06-2017 15:37
MSC+Srep+lzma Simple Script Example gozarck Conversion Tutorials 10 07-09-2015 16:31



All times are GMT -7. The time now is 14:59.


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