FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Mini Compressor AIO 2021 (https://fileforums.com/showthread.php?t=96315)

darkwolves 04-05-2019 08:24

Quote:

Originally Posted by Carldric Clement (Post 480863)
Edit the arc.ini in Bin > Arc folder
Find uelr
Change uv to ulv
Done

alright will try that i like the installer its cool to see an AIO with the option to compress and make an installer with the exact same tool

Carldric Clement 19-05-2019 04:13

Mini Compressor AIO Updated - v20.4
* Go check it out.

:D

Carldric Clement 19-05-2019 11:14

Giveaway Mini Compressor v20.4 + Source Code
 
1 Attachment(s)
Giveaway Mini Compressor v20.4 + Source Code is Available.
Use it and Compile it. :)

Based Created: Delphi XE 10.2.3
All source was included.

Disclaimer
Quote:

Before you open it, Check if the component is missing or not. If not your problem with the old version Delphi that you used it.

To share with your all friend, cousin, etc. Make sure you credits who have created this software by my name. I recommended.
If not you disappoint me.

To mod this source, I require use with Delphi XE 10.2.3.

Any source was missing, I will update for a way my time.
Thank you guys for use Mini Compressor to all member's FileForums.
Thank you for your help.

Always Smile. :D

kenzo34 19-05-2019 22:53

stay with us, you offer great software

Carldric Clement 20-05-2019 22:53

Quote:

Originally Posted by kenzo34 (Post 481074)
stay with us, you offer great software

thank you... But I'm retired. :D

NOTE:
Quote:

But I'm not quit this forum guys. It because I have a job so I don't have time to update my software Mini Compressor and other.
If you guys want to use my latest version of Mini Compressor v20.4 + Source just modified... But don't forget to put credits who have created this software Mini Compressor. Okay? :D

Carldric Clement 29-05-2019 04:30

1 Attachment(s)
MC Beta v10 Released! :D

Enjoy using Mini Compressor.

Note:
Quote:

Using Freearc Next be used as safe. Not to be playing like a toy. It is still a developer. To use it, be careful. This FA does not finish updating. Okay?
The screenshot was uploaded.

Carldric Clement 10-06-2019 08:40

Mini Compressor AIO Updated - v20.5

Fixed:
Quote:

* SFX would be joint with your archive like MyFile.arc after compress
* UHARC can compress and decompress with CLS only. [Single and Multi-Thread version]
Tweaks:
Quote:

* Design was updated
* You can watch Meme Videos on About > ?? form
* Self Extract can be joint with archive after compress
* lzma2[7z] and lolz optimize for memory
Check it out. :D

Moderator, Please change my title Mini Compressor to Mini Compressor AIO. :D

Carldric Clement 21-06-2019 07:45

Throwback Mini Compressor v2.05
 
1 Attachment(s)
I always remember when I create this my old Mini Compressor v2.05 since 2014. If you guys remember this old software, It would be happier for me :)

Carldric Clement 23-06-2019 00:23

Mini Compressor AIO v20.6 - Updated

Changelog was moved: here

Fixed:
Quote:

* While close MC will check if the component is still active.
* The sound was added and nothing to fix anything. Looks clean.
Tweaks:
Quote:

* SFX was updated
* Throwback Mini Compressor v2.05 was added
* The design software was fixed.
Go check it out. :D

EDIT:
Quote:

any files or any source will update later.

The updates will be continued CIU V3 Designer on 31/12/2019

Zanoza79 18-09-2019 04:29

Fanext does not work with your installer - requires you to insert a disk. Maybe I'm doing something wrong.:confused:

Quote:

The updates will be continued CIU V3 Designer on 31/12/2019
I'm waiting.

It would be nice to add a selection of components to the installer and implement a registry entry.

MaXun 21-09-2019 17:21

Quote:

Originally Posted by Carldric Clement (Post 481455)
Mini Compressor AIO v20.6 - Updated

Changelog was moved: here

Fixed:

Tweaks:

Go check it out. :D

EDIT:

It does not correctly determine the volume of the hard drive and the weight of the game.
Code:

function DelSp(s: string): string;
begin
  while Pos('  ',s)>0 do StringChange(s,'  ',' ');
  Result:=Trim(s);
end;

procedure GroupChange(Sender: TObject);
begin
  GroupEditLabel.Caption := MinimizePathName(WizardForm.GroupEdit.Text, GroupEditLabel.Font, GroupEditLabel.Width);
end;

function NumToStr(Float: Extended): string;
begin
  Result:=Format('%.2n', [Float]);
  StringChange(Result, ',', '.');
  while ((Result[Length(Result)]='0') or (Result[Length(Result)]='.')) and (Pos('.',Result)>0) do SetLength(Result,Length(Result)-1);
end;

function MbOrGb(Float: extended): ansistring;
begin
  if Float >= (1024*1024*1024) then
    result:=format('%.2n',[Float/(1024*1024*1024)])+' Gb'
  else
    result:= format('%.2n',[Float/(1024*1024)])+' Mb';
end;

function GetElementIndex(a:TALabel; lbl:TLabel):integer;
var
  i:integer;
  f:boolean;
begin
  Result:=-1;
  f:=False;
  for i:=0 to GetArrayLength(a)-1 do
    if a[i]=lbl then begin
      f:=True;
      Break;
    end;
  if f then Result:=i;
end;

function NoIcons: Boolean;
begin
  Result:= BtnGetEnabled(hGroupBrowseBtn);
end;

function Desktop: Boolean;
begin
  Result:= BtnGetChecked(DesktopCheck);
end;

function QuickLaunch: Boolean;
begin
  Result:= BtnGetChecked(QuickLaunchCheck);
end;

procedure HideControls;
begin
  LabelPct1.Hide;
end;

What is wrong here?
https://c.radikal.ru/c06/1909/04/10d1aa4101aa.jpg

Carldric Clement 24-09-2019 08:51

1 Attachment(s)
Quote:

Originally Posted by Zanoza79 (Post 482649)
Fanext does not work with your installer - requires you to insert a disk. Maybe I'm doing something wrong.:confused:


I'm waiting.

It would be nice to add a selection of components to the installer and implement a registry entry.

Can you screenshot how do you make on Archive Section behind Inno Maker on Mini Compressor? :)

I'll give you some example.

Carldric Clement 24-09-2019 09:01

Quote:

Originally Posted by MaXun (Post 482715)
It does not correctly determine the volume of the hard drive and the weight of the game.
Code:

function DelSp(s: string): string;
begin
  while Pos('  ',s)>0 do StringChange(s,'  ',' ');
  Result:=Trim(s);
end;

procedure GroupChange(Sender: TObject);
begin
  GroupEditLabel.Caption := MinimizePathName(WizardForm.GroupEdit.Text, GroupEditLabel.Font, GroupEditLabel.Width);
end;

function NumToStr(Float: Extended): string;
begin
  Result:=Format('%.2n', [Float]);
  StringChange(Result, ',', '.');
  while ((Result[Length(Result)]='0') or (Result[Length(Result)]='.')) and (Pos('.',Result)>0) do SetLength(Result,Length(Result)-1);
end;

function MbOrGb(Float: extended): ansistring;
begin
  if Float >= (1024*1024*1024) then
    result:=format('%.2n',[Float/(1024*1024*1024)])+' Gb'
  else
    result:= format('%.2n',[Float/(1024*1024)])+' Mb';
end;

function GetElementIndex(a:TALabel; lbl:TLabel):integer;
var
  i:integer;
  f:boolean;
begin
  Result:=-1;
  f:=False;
  for i:=0 to GetArrayLength(a)-1 do
    if a[i]=lbl then begin
      f:=True;
      Break;
    end;
  if f then Result:=i;
end;

function NoIcons: Boolean;
begin
  Result:= BtnGetEnabled(hGroupBrowseBtn);
end;

function Desktop: Boolean;
begin
  Result:= BtnGetChecked(DesktopCheck);
end;

function QuickLaunch: Boolean;
begin
  Result:= BtnGetChecked(QuickLaunchCheck);
end;

procedure HideControls;
begin
  LabelPct1.Hide;
end;

What is wrong here?
https://c.radikal.ru/c06/1909/04/10d1aa4101aa.jpg

I've just update a little bit. Just copy and paste through it.
Code:

function MbOrGB(Float: extended): ansistring;
begin
  if Float<1024 then Result:=NumToStr(Float)+' MB'
  else if (Float/1024)<1024 then Result:=NumToStr(Float/1024)+' GB'
  else if (Float/(1024*1024))<1024 then Result:=NumToStr(Float/(1024*1024))+' TB'
end;


MaXun 24-09-2019 19:57

Quote:

Originally Posted by Carldric Clement (Post 482754)
I've just update a little bit. Just copy and paste through it.
Code:

function MbOrGB(Float: extended): ansistring;
begin
  if Float<1024 then Result:=NumToStr(Float)+' MB'
  else if (Float/1024)<1024 then Result:=NumToStr(Float/1024)+' GB'
  else if (Float/(1024*1024))<1024 then Result:=NumToStr(Float/(1024*1024))+' TB'
end;


It works! thank.
And how can I add a display of the progress of the extracted files?
https://a.radikal.ru/a31/1909/af/b243d9408adb.jpg

Celestosapien 19-10-2019 18:33

Hi, i want to ask if there is any difference between using freearc or freearc next?
I mean related to data compression ratio or decompression speed with same methods?
or are there any specific methods that only work with fa?

Celestosapien 19-10-2019 20:14

And is there any way to encrypt free arc next files?

Carldric Clement 19-10-2019 21:45

Quote:

Originally Posted by Celestosapien (Post 483098)
Hi, i want to ask if there is any difference between using freearc or freearc next?
I mean related to data compression ratio or decompression speed with same methods?
or are there any specific methods that only work with fa?

FreeARC is a standard compress, the some of type's of memory usage that we can adjust how much that we want to compress as fast include the other tools. Example like XTool, 7z, SRep, Precomp and other stuff.

The FreeARC Next is the new generation without using or using methods. It was mask one of extensions that we want to compress to divide of the bytes. Unfortunate, FA Next would still in progress updating. So I will wait for update if the coder success.

felice2011 20-10-2019 00:44

Quote:

Originally Posted by Celestosapien (Post 483100)
And is there any way to encrypt free arc next files?

As rightly, Carldric answers, FA will not have any more updates, and FAN seems that the creator has no intention of continuing his work.
If you want to try to encrypt a FreeArc archive in order to hide the internal files and its archive methods and add passwords, you can try this https://www.fileforums.com/showpost....88&postcount=1

Celestosapien 28-10-2019 04:18

RZ FA Next, CLS .Net & Inno Setup
 
Hi, thanks for answering my earlier questions...:):):)
this time i want to ask how a few more questions:
1.How to use rz with fa next...
i took the rz from arc.ini to fa.ini
Code:

[External compressor:rz,razor]
header    = 0     
packcmd  = "bwt\razor" a -y -d 128m $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = "bwt\razor" e -y $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

but i get the error saying failed to compress...:(


2.And is cls related to .NET? if yes then is there any chance of error while extracting files if some .NET versions are not installed? As i have encountered error UHARC: -3 while extracting files using your installer on other system(that was not mine and probably .NET 2.5 and 3.5 missing)!

3.What are minimum files required for making setup using your installer, if compress using:
Code:

xprecomp+srep:m3f:a2+exe2+lolz:d1024m:mt1
As setup size becomes too big!!! i tried deleting some files on my on like: (cls-rzo, cls-zcm and others that i thought were not necessary)... but on extraction it using carl installer i got error saying cls-zcm missing!

Carldric Clement 28-10-2019 05:04

Quote:

Originally Posted by Celestosapien (Post 483205)
Hi, thanks for answering my earlier questions...:):):)
this time i want to ask how a few more questions:
1.How to use rz with fa next...
i took the rz from arc.ini to fa.ini
Code:

[External compressor:rz,razor]
header    = 0     
packcmd  = "bwt\razor" a -y -d 128m $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = "bwt\razor" e -y $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

but i get the error saying failed to compress...:(


2.And is cls related to .NET? if yes then is there any chance of error while extracting files if some .NET versions are not installed? As i have encountered error UHARC: -3 while extracting files using your installer on other system(that was not mine and probably .NET 2.5 and 3.5 missing)!

3.What are minimum files required for making setup using your installer, if compress using:
Code:

xprecomp+srep:m3f:a2+exe2+lolz:d1024m:mt1
As setup size becomes too big!!! i tried deleting some files on my on like: (cls-rzo, cls-zcm and others that i thought were not necessary)... but on extraction it using carl installer i got error saying cls-zcm missing!

Minimum spec to compress is 4GB's of ram and system required is x64.

I recommended install .NET 3.5 and 4.5

And last, you've just deleted cls-zcm.dll and a tools. You maniac. :(
It suppose to delete the "_Temp" Folder. Not tools.

Celestosapien 28-10-2019 06:02

Quote:

Originally Posted by Carldric Clement (Post 483206)
Minimum spec to compress is 4GB's of ram and system required is x64.

I recommended install .NET 3.5 and 4.5

And last, you've just deleted cls-zcm.dll and a tools. You maniac. :(
It suppose to delete the "_Temp" Folder. Not tools.

I have 12 GB ram... And btw, is the code for fa.ini correct? For using rz?
Thanks:)
I don't understand, is zcm used while compressing files with the given method!!! Then why is it required for extraction?:confused:

Carldric Clement 28-10-2019 06:49

Quote:

Originally Posted by Celestosapien (Post 483208)
I have 12 GB ram... And btw, is the code for fa.ini correct? For using rz?
Thanks:)
I don't understand, is zcm used while compressing files with the given method!!! Then why is it required for extraction?:confused:

I think I havent used that zcm before. Will check if I have a time.

Fa.ini code was correct. But you may change it -d 128m to -d 64m

Celestosapien 29-10-2019 04:24

Quote:

Originally Posted by Carldric Clement (Post 483209)
I think I havent used that zcm before. Will check if I have a time.

Fa.ini code was correct. But you may change it -d 128m to -d 64m

Thanks for the reply:)
I figured out the problem... May be you didn't get my question right but anyways. I had to edit main.iss file to remove all the unnecessary files so that it only contains
Quote:

arc.ini, unarc.dll, cls-lolz_x64.exe, cls.ini, cls-lolz.dll in _ISDone folder
for when I make an installer for
Code:

lolz:d256m:mt1
it doesn't give an error.:D
And please know that I'm totally new to compression and inno setups. And your software has helped me understand alot...:D

Carldric Clement 31-10-2019 08:32

Quote:

Originally Posted by Celestosapien (Post 483217)
Thanks for the reply:)
I figured out the problem... May be you didn't get my question right but anyways. I had to edit main.iss file to remove all the unnecessary files so that it only contains for when I make an installer for
Code:

lolz:d256m:mt1
it doesn't give an error.:D
And please know that I'm totally new to compression and inno setups. And your software has helped me understand alot...:D

Your welcome.

Carldric Clement 21-11-2019 09:51

Mini Compressor AIO v20.7 - Updated

Changelog: here

Fixed:
Quote:

* Masked Compression fixed
* Form redesigned
* Inno Maker fixed
Tweaks:
Quote:

* Animation Form Upgrade
* Inno Maker Compile Optimize
Go check it out. :D

Titeuf 21-11-2019 10:08

Hello,
all compression methods are compatible with Mini Compressor AIO?
cordially

Carldric Clement 21-11-2019 10:14

Quote:

Originally Posted by Titeuf (Post 483618)
Hello,
all compression methods are compatible with Mini Compressor AIO?
cordially

Yes. But I'm sure you would check if compatible with your system first.

EDIT: Now the Installer Creator was included on Mini Compressor.

MaXun 22-11-2019 08:15

Quote:

Originally Posted by Carldric Clement (Post 483617)
Mini Compressor AIO v20.7 - Updated

Changelog: here

Fixed:

Tweaks:

Go check it out. :D

I look forward to further development:)

Carldric Clement 22-11-2019 23:54

Translate for Mini Compressor

Code:

[MainLanguage]
Display=English
Code=Lang1
Author=Carldric Clement

; ==================================================
; Main Form
; ==================================================
[MainForm]
Load1=Loading Tools...
Load2=Loaded Tools.
CW=Created with
WC=Welcome to



[ToolbarTop]
Software=Software
Opt=Option
Changelog=Changelog
Help=Help

[HelpToolbar]
ChkUpdate=Check Update
About=About




[FreearcTab]
Comp=Compress
AdvComp=Advanced Compress
FAN=FA Next
SplitComp=Splitter Compress

[CompressFreearc]
Source=Source
Output=Output
Opt=Option
MemUsg=Memory Usage
MB=MB
Arch=Archive
Method=Method
Diskspan=DisksPan
Use=Use
TOD=Type of Disc
FDisk=First Disks
LDisk=Last Disks
Pass=Password
SExt=Self Extracting
Result=Result

[AdvCompressFreearc]
General=General
Source=Source
Output=Output
Mem=Memory
Method=Method
Arch=Archive
Opt=Option
Add=Add
Remove=Remove
SExt=Self Extracting
Start=Start

[FANFreearc]
Source=Source
Output=Output
Opt=Option
Arch=Archive
Method=Method
SExt=Self Extracting
Start=Start



[IMTab]
Changelog=Changelog

[InstallerIM]
General=General
SysReq=System Requirements
Lnk=Shortcut
Arch=Archive
Reds=Redist
Resc=Resource
Dinstall=Design Installer
Comp=Compile
Back=<< Back

[GenInstallerIM]
General=General
Name=Setup Name
Publisher=Setup Publisher
Version=Setup Version
Size=Setup Size
MB=MB
Opt=Option
CompType=Compression Type
CompSolid=Compression Solid
CompThread=Compression Thread
Protect=Protection
Icon=Icon
Change=Change
BRepack=Basic Repack (Games)
Dir=Directory
Use=Use

[SysReqInstallerIM]
Sys=System
Process=Processors (MHz)
GPU=GPU RAM
RAM=RAM
Win=Windows
Major=Major
Minor=Minor
ServPack=Service Pack

[LnkInstallerIM]
LnkCreator=Shortcut Creator
No=No.
Name=Name
File=File
Icon=Icon
Working=Working
Create=Create
Remove=Remove

[ArchInstallerIM]
ArchCreator=Archive Creator
Type=Type
Source=Source
Output=Output
Disk=Disk
Pass=Password
No=No.
Create=Create
Remove=Remove

[RedsInstallerIM]
RedsCreator=Redist Creator
Name=Name
Exec=Exec
Params=Params
No=No.
Create=Create
Remove=Remove

[ResourceIM]
Edit=Edit
New=New
Save=Save
Default=Default
Source=Source
Add=Add
Remove=Remove
Text1=NOTE
Text2=For noob, skip this area if you don't know how to use.
Text3=For advance, after you edit this source, it wont reset anything. Will keep your keys source forever.

[DesignInstallerIM]
WImage=Wizard Image (877x845)
Logo=Logo (877x485)
Splash=Splash
Music=Music
Change=Change
Use=Use
FInOut=Fade In/Out
Show=Show
Pngs=Images (PNG)
Text1=set your time (seconds only)
Text2=(minimum image is 10 only)
Browse=Browse



[ISOMakerTab]
Basic=Basic
FDFA=For DisksPan Freearc

[BasicISOMaker]
Source=Source
Output=Output
Create=Create

[FdFaISOMaker]
NOG=Name of Game
TOD=Type of Disc
Source=Source
FFE=File for Exist



; ==================================================
; Result Compress Form
; ==================================================
[ResultCompressForm]
Title=Confirmation to Process
Confirm=Are you sure about that?
General=General
Source=Source
Output=Output
Opt=Option
Mem=Memory
Method=Method
Pass=Password
Yes=YES
No=NO

[StartingCompressForm]
Title1=Processing...
Title2=Failed.
Title3=Finished.
Comp=Compressing...
DateTime=Date & Time
Source=Source
Output=Output
Method=Method
Res=RESULT
OriSize=Original Size
CompSize=Compressed Size
Text1=Thank you for using
Text2=LOOKS LIKE THERE IS A PROBLEM ABOUT FREEARC!
Text3=PLEASE CONTACK DEVELOPER ABOUT THIS PROBLEM!
Save=Save Report
Close=Close



; ==================================================
; Option Form
; ==================================================
[OptForm]
Title=Option
Wall=Wallpaper
Music=Music
Change=Change
Close=Close



; ==================================================
; Changelog Form
; ==================================================
[LogForm]
Title=What's New?



; ==================================================
; About Form
; ==================================================
[AboutForm]
Title=About
CB=Created by
Secret=??

NOTE: Dont edit the code Lang1 on MainLanguage

Carldric Clement 25-11-2019 22:07

Mini Compressor AIO v20.8 - Updated

Changelog: here

Fixed:
Quote:

* Inno Maker Compile Fixed (After compile, there are no longer pop-ups onto request insert music file.)
* Optimize Form
Tweaks:
Quote:

* Language Selector added
* English added
* Resource Editor Inno Maker added
Go check it out. :D

Carldric Clement 10-12-2019 19:40

Mini Compressor AIO v20.9 - Updated

Changelog: here

Fixed:
Quote:

* Design Optimize
* RZO was changed to RZ
Tweaks:
Quote:

* Skin Selector added
* Inno Maker Updated
Patch upload and fixed: Missed understand to get bytes of installer

Go check it out. :D

EDIT: CIU V3 Designer project was lost now. Which means discontinued.

MzR 16-04-2020 03:59

Setup.exe made with ASC unable to extract .bin compressed with Mini Compresso
 
i have made a Setup.exe for Age of Empires II HD with 3 DLC's using latest version of Advanced Setup Creator and i have compressed the game with latest version of Mini Compressor AIO's advanced compress with best method: xprecomp+static2+lolz1/$bink=bink/$void=void/$photo=lepton/$ogg=oggre/$wavz=tta/$mp3=packmp3+srep:m3f+tor
output archive: Data1.bin and memory used: 2048 MB

But the Setup is unable to extract .bin file. Do ASC support Mini Compressor?https://fileforums.com/attachment.ph...1&d=1587034346

Carldric Clement 23-04-2020 09:54

Quote:

Originally Posted by MzR (Post 485333)
i have made a Setup.exe for Age of Empires II HD with 3 DLC's using latest version of Advanced Setup Creator and i have compressed the game with latest version of Mini Compressor AIO's advanced compress with best method: xprecomp+static2+lolz1/$bink=bink/$void=void/$photo=lepton/$ogg=oggre/$wavz=tta/$mp3=packmp3+srep:m3f+tor
output archive: Data1.bin and memory used: 2048 MB

But the Setup is unable to extract .bin file. Do ASC support Mini Compressor?https://fileforums.com/attachment.ph...1&d=1587034346

:confused: ASC needs to add a resource. Goto Deployment > Resource and then add the files from MC > Installer > _ISDone.

NouZ-Bi 25-04-2020 12:03

cool tool but i need help please
 
Hello and sorry for my poor English, I use a translator :) .

I'm a beginner in the repack world, but I really want to learn.

This forum is great and this aio tool too.

I would like to know if it was possible to create your own installer design with this aio tool or with another software.

If someone could tell me if this is possible and how to do it because with the install creator or the design creator I don't see how to import template in the compiler provided in this tool.

Thank you in advance for your help !

Carldric Clement 29-05-2020 06:53

Mini Compressor AIO v20.10 - Updated

Changelog: here

Fixed:
Quote:

* a few CLS was removed
Tweaks:
Quote:

* PMT was better aio precompressor
Go check it out. :D

gozarck 30-05-2020 22:39

1 Attachment(s)
nice tool. Can u add lrzip ? also u can test if u want.
bye :)

Carldric Clement 08-06-2020 22:14

Quote:

Originally Posted by gozarck (Post 486117)
nice tool. Can u add lrzip ? also u can test if u want.
bye :)

looks interesting. and some this tool have stdio. nice. gonna few update this mini compressor.

Carldric Clement 09-06-2020 00:38

Mini Compressor AIO v20.11 - Updated

Changelog: here

Fixed:
Quote:

* SFX now can available to use
Tweaks:
Quote:

* a few little bit optimize of PMT
* A few optimize tools of Freearc, and Inno Setup
Go check it out. :D

yokusokujanai 15-06-2020 08:03

https://i.ibb.co/GdpPTjB/Capture.png

ERROR after compiling! please help

Carldric Clement 15-06-2020 18:29

Quote:

Originally Posted by yokusokujanai (Post 486384)
https://i.ibb.co/GdpPTjB/Capture.png

ERROR after compiling! please help

Please give your spec pc. I need to know. :)


All times are GMT -7. The time now is 10:45.

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