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

Reply
 
Thread Tools Display Modes
  #1081  
Old 22-09-2021, 09:53
MartinezPL MartinezPL is offline
Registered User
 
Join Date: Oct 2011
Location: Poland
Posts: 117
Thanks: 46
Thanked 24 Times in 9 Posts
MartinezPL is on a distinguished road
Hi,
Any idea why shortcut is a white blank icon?

I have this in Settings.ini

[Executable1]
ShortcutName=Kena Bridge of Spirits
ExePath=Kena.exe
ExeParam=
IconFileName=Kena.exe

I even had:
IconFileName=Setup.ico

Since Setup.ico use icon straight from game .exe file.
Still it was white blank image.
Reply With Quote
Sponsored Links
  #1082  
Old 22-09-2021, 10:14
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,028
Thanks: 1,740
Thanked 2,201 Times in 752 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by MartinezPL View Post
Hi,
Any idea why shortcut is a white blank icon?

I have this in Settings.ini

[Executable1]
ShortcutName=Kena Bridge of Spirits
ExePath=Kena.exe
ExeParam=
IconFileName=Kena.exe

I even had:
IconFileName=Setup.ico

Since Setup.ico use icon straight from game .exe file.
Still it was white blank image.
Remove IconFileName= key or try:
IconFileName={app}\Kena.exe
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
abror (28-05-2022), MartinezPL (23-09-2021)
  #1083  
Old 23-09-2021, 04:36
MartinezPL MartinezPL is offline
Registered User
 
Join Date: Oct 2011
Location: Poland
Posts: 117
Thanks: 46
Thanked 24 Times in 9 Posts
MartinezPL is on a distinguished road
"IconFileName={app}\Kena.exe"
This made the trick.
Thank you very much Cesar82
Reply With Quote
  #1084  
Old 11-10-2021, 02:01
L33THAK0R's Avatar
L33THAK0R L33THAK0R is offline
Registered User
 
Join Date: Feb 2021
Location: Saudi Arabia
Posts: 352
Thanks: 120
Thanked 59 Times in 38 Posts
L33THAK0R is on a distinguished road
Is it there any easy solution to have multiple data files for single selected component? I'm currently making a collection, with one of the selective titles having to have certain files packed separately. I know I could just instruct the user to select 2 items, but for the sake of it looking better I was wondering if a neater solution would be possible.

I tried modifying
Code:
if Trim(GetIniString('ComponentsSettings', 'Component' + IntToStr(I) + '.File', '', IniFile)) = '' then
&
Code:
ComponentFile := ExpandConstant('{src}\' + GetIniString('ComponentsSettings', 'Component' + IntToStr(CompIndexList[I]) + '.File', '', ExpandConstant('{tmp}\Settings.ini')));
to
Code:
if Trim(GetIniString('ComponentsSettings', 'Component' + IntToStr(I) + '.FileA' or '.FileB', '', IniFile)) = '' then
&
Code:
ComponentFile := ExpandConstant('{src}\' + GetIniString('ComponentsSettings', 'Component' + IntToStr(CompIndexList[I]) + '.FileA', '', ExpandConstant('{tmp}\Settings.ini')));
ComponentFile := ExpandConstant('{src}\' + GetIniString('ComponentsSettings', 'Component' + IntToStr(CompIndexList[I]) + '.FileB', '', ExpandConstant('{tmp}\Settings.ini')));
when they appeared (twice for each) within the script, however this sadly didn't work out, with other attempts either not functioning when testing with a set of example archives, or an error was met on compiling the script. Does anyone familiar with Pascal have any idea if this type of modification is possible? I'm assuming such a solution isn't feasible, as the script wasn't designed to have multiple entries for a single component part.
Reply With Quote
  #1085  
Old 11-10-2021, 03:18
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,413
Thanks: 1,078
Thanked 7,026 Times in 2,659 Posts
KaktoR is on a distinguished road
Yes, however, you have to enable Tasks

Just make a Task

Code:
Task1.Name=Game Files
Task1.ItemType=CHECKBOX
Task1.Size=<Game size> gb/mb/kb/b
Task1.Level=0
Task1.Checked=1
Task1.Enabled=0
And records.ini

Code:
[Record1]
Type=Freearc_Original
Source={src}\Data1a.bin
Output={app}\
Disk=1
Size=<archive size> gb/mb/kb/b
Task=1

[Record2]
Type=Freearc_Original
Source={src}\Data1b.bin
Output={app}\
Disk=1
Size=<archive size> gb/mb/kb/b
Task=1

...
Maybe it works without Task too, but I have not tested it.

But may I ask, why you don't make a masked data archive? You can store different files with different compressions inside a single freearc archive.

Edit: Ohh, I just forgot you are working with an older script (right?). In this case I can't help you much, but I guess it is possible neverthless (I guess in this case you have to work with Component=# instead of Task=# in records.ini).
__________________
Haters gonna hate

Last edited by KaktoR; 11-10-2021 at 03:22.
Reply With Quote
  #1086  
Old 11-10-2021, 04:24
L33THAK0R's Avatar
L33THAK0R L33THAK0R is offline
Registered User
 
Join Date: Feb 2021
Location: Saudi Arabia
Posts: 352
Thanks: 120
Thanked 59 Times in 38 Posts
L33THAK0R is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
But may I ask, why you don't make a masked data archive? You can store different files with different compressions inside a single freearc archive.
It's quite odd but regardless of a mask, certain files within this title fail to decompress unless packed separately. Even stranger still compressing these files separately gives a lower combined total, than with these files all-in-one archive.

Quote:
Originally Posted by KaktoR View Post
Edit: Ohh, I just forgot you are working with an older script (right?). In this case I can't help you much, but I guess it is possible nevertheless (I guess in this case you have to work with Component=# instead of Task=# in records.ini).
I'll give merging this feature to v7.2.0 a shot, since it already works in 7.3.X, I'm hopeful I'll be successful!
Reply With Quote
  #1087  
Old 03-12-2021, 19:30
its_gnar_again's Avatar
its_gnar_again its_gnar_again is offline
Registered User
 
Join Date: Nov 2021
Location: Basedland
Posts: 11
Thanks: 1
Thanked 0 Times in 0 Posts
its_gnar_again is on a distinguished road
Odd question considering it's been a few months without a new post on this thread, but what does it mean when the installer outputs a unarc -6 error (unable to read data)? Someone was talking to me about it and I have no clue - I never received this error and decompression worked fine on my machines.
__________________
forgot the pass & email I used on my old account lmao

Last edited by its_gnar_again; 03-12-2021 at 19:37.
Reply With Quote
  #1088  
Old 30-03-2022, 13:47
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
Please, DelSaveGame in script
Reply With Quote
  #1089  
Old 30-03-2022, 13:55
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,413
Thanks: 1,078
Thanked 7,026 Times in 2,659 Posts
KaktoR is on a distinguished road
Code:
[UninstallDelete]
Type: filesandordirs; Name: "<pathconstant>\<folder name>"
__________________
Haters gonna hate
Reply With Quote
  #1090  
Old 30-03-2022, 15:58
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 KaktoR View Post
Code:
[UninstallDelete]
Type: filesandordirs; Name: "<pathconstant>\<folder name>"
Thank you, but what I meant was a script if possible that asks when you uninstall a game if you want to delete the game save which is for example in <userdocs>\SquareEnix\Final Fantasy VII
Reply With Quote
  #1091  
Old 31-03-2022, 01:44
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,413
Thanks: 1,078
Thanked 7,026 Times in 2,659 Posts
KaktoR is on a distinguished road
Try this

Add to Settings.ini
Code:
[Settings]
...
...
Savegamefolder={userdocs}\Final Fantasy VII
Edit: Fixed missing file
Attached Files
File Type: 7z Script_Fix.7z (37.0 KB, 11 views)
__________________
Haters gonna hate

Last edited by KaktoR; 31-03-2022 at 04:01.
Reply With Quote
  #1092  
Old 31-03-2022, 14:49
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
Thanks very much
can I put several like Savegamefolder1, Savegamefolder2?
Reply With Quote
  #1093  
Old 04-04-2022, 14:52
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 172
Thanks: 280
Thanked 52 Times in 45 Posts
fabrieunko is on a distinguished road
hello, is it possible to add a small equalizer just above the music OFF/ON button
Reply With Quote
  #1094  
Old 06-04-2022, 00:30
Rainiu Rainiu is offline
Registered User
 
Join Date: Sep 2020
Location: Canada
Posts: 13
Thanks: 9
Thanked 0 Times in 0 Posts
Rainiu is on a distinguished road
Sorry if this has been asked before, but how do I add a window or border to the welcome screen message? Thanks.

[IMG][/IMG]
Reply With Quote
  #1095  
Old 06-04-2022, 11:10
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,413
Thanks: 1,078
Thanked 7,026 Times in 2,659 Posts
KaktoR is on a distinguished road
You have to make it manualy in your bitmap image. There is a _Background.psd file which contains this half transparent border for example reasons (75% opacity).



Maybe one day I will add PNG images for it But actually this project is finished from my side if there are no bugs around.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Rainiu (07-04-2022)
Reply

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



All times are GMT -7. The time now is 03:40.


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