FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Helping thread :) (https://fileforums.com/showthread.php?t=98274)

ChronoCross 17-10-2016 19:00

i cleaning the code
Quote:

onProgramStart(function ()
f = io.open(command.arcname, "wb")
f1 = io.open("data.part1", "rb")
f2 = io.open("data.part2", "rb")
f3 = io.open("data.part3", "rb")
f4 = f1:read("*all")..f2:read("*all")..f3:read("*all")
t = io.output (f:write(f4))
f:close()
end)

gozarck 20-10-2016 15:40

HI @ChronnoCross Thanks for the code. Well i was thinking and reading LUA code and maybe i resolve your request(with minimal knowledge).
--how to read parts without merge those files?
Well the only trick i made is send the data to Buffer.
Example:
FA Next request the file to extract, so the code create the file "data.arc" with 0MB(like a temp file but isn't)
and send the data of data.part1, data.part2 and data.part3 to buffer. FA Next read the collected data from buffer and extract the files.
the file data.arc always have 0MB because with the LUA code "flush" you flush the buffer.
Code:

onArchiveStart(function ()
        f =  io.open(command.arcname, "wb") 
        f1 = io.open("data.part1", "rb")
        f2 = io.open("data.part2", "rb")
        f3 = io.open("data.part3", "rb")
        f4 = f1:read("*all")..f2:read("*all")..f3:read("*all")       
        io.output(f:write(f4)):setvbuf("full")       
end)

onArchiveDone(function ()
    f =  io.open(command.arcname, "wb") 
        f:flush()
end)

maybe we need to check the code or add some more lines :)

ChronoCross 20-10-2016 17:05

Wow awesome gozarck now we don't need extra space to extract multi parts!. Works great! You emulate the arc file or whats?.
I made a test in my usb flash drive: i was fill it to the limit of space and then i added the files to extract with 10mb of free space in the usb flash drive to test if the file data.arc increase his size but not!!! Works perfect! Also extract correctly.You create multiparts extraction for faNext!!

gozarck 21-10-2016 08:14

We need to work a little more with the code to add features like unpack from DVD , remaining time for while collecting data, request part if some part are in diferent folder, make the code for IS. Also we need to add the option exclude full path -ep1 with lua code for fa next.
----Update------
Unpack from DVD or iso DONE!
----------------------
For unpack from dvd you need The
data.parts fa.ini fa.exe and unpack.bat
example:
-------------------
data.part1
data.part2
data.part3
fa.ini
fa.exe
Unpack.bat
------------------
the trick is set data.arc file in temp folder.(%temp%\data.arc)
----Unpack.bat----------
Code:

fa x -dp"D:\MyGame" -o+ %temp%\data.arc

ChronoCross 21-10-2016 18:54

This is nice gozarck!. From DVD - ISO works greats!
Now we need a code to "request part if some part are in diferent folder" or another DVD!.
I don`t know how to add "-ep1" option in LUA code.
If someone knows please help us.

ChronoCross 22-10-2016 10:31

Oh no... My test are wrong!. Data.arc need extra space!.

Blade2239 24-10-2016 22:30

http://fileforums.com/attachment.php...3&d=1477332855
Anyone help me with this........ Please.....

Blade2239 27-10-2016 11:37

Anyone can tell me more forum link which do work like fileforms
Like conversion tutorial and more.....
pakrat2k2 you may know......
For compression I know encode.ru
Please

aswadd 27-10-2016 12:22

Quote:

Originally Posted by Blade2239 (Post 453179)
Anyone can tell me more forum link which do work like fileforms
Like conversion tutorial and more.....
pakrat2k2 you may know......
For compression I know encode.ru
Please

Most of then are Russian forums I don't remember the names but search google & you will find them

oltjon 27-10-2016 12:53

Quote:

Originally Posted by Blade2239 (Post 453179)
Anyone can tell me more forum link which do work like fileforms
Like conversion tutorial and more.....
pakrat2k2 you may know......
For compression I know encode.ru
Please

http://krinkels.org/ russian forum godluck :D

Blade2239 28-10-2016 00:41

Quote:

Originally Posted by oltjon (Post 453184)
http://krinkels.org/ russian forum godluck :D

Can I get more option beacuse Google sending me to warz groups.....

And anyone can tell me which is the most beautiful installer is available or made .... Like we made with ic asc and other....

Which one of the latest codex/plaza installer

Is anyone know how fitgirl installer looks......

Edit:
On krinkels most user are not active from a while!!!!!!

Edit:
Why fileforms user are not online. is everyone's exam start exactly together........

Edit:
Can anybody tell me how to extract or get source of wpi.....
There's an innoextract but it just give DLL exe file no code or source

MCWRX 30-10-2016 05:44

Hey guys. Can someone tell me why ISDone tells me that there is Unsupported compression method when I am using srep+delta+exe2+lzma.

The problem is with exe2, but I don`t understand why. When I use exe instead, it`s ok, but with exe2 I can get rid of some kbs.

aswadd 30-10-2016 06:01

Quote:

Originally Posted by MCWRX (Post 453274)
Hey guys. Can someone tell me why ISDone tells me that there is Unsupported compression method when I am using srep+delta+exe2+lzma.

The problem is with exe2, but I don`t understand why. When I use exe instead, it`s ok, but with exe2 I can get rid of some kbs.

why even using exe :D for only 1 or 2 megabytes ?? & For delta don't use it unless you make sure it will give u better ratio

BTW this problem is related to arc.ini there is something wrong with it
& if you are using fazip for exe & delta & lzma make sure you are including it's configuration is arc.ini also don't forget to include fazip.exe & dll files

MCWRX 30-10-2016 06:06

Quote:

Originally Posted by aswadd (Post 453276)
why even using exe :D for only 1 or 2 megabytes ?? & For delta don't use it unless you make sure it will give u better ratio

BTW this problem is related to arc.ini there is something wrong with it
& if you are using fazip for exe & delta & lzma make sure you are including it's configuration is arc.ini also don't forget to include fazip.exe & dll files

I just had one executable and a bunch of dll`s and ran them through 16 algorithms, and chose the one with smallest size.

I just wanted to know what is causing the problem, to know where to dig.

What can be wrong with .ini? Do you have any clue?

Thanks.

p.s - Through console it`s running fine, damn.

VickNet 05-11-2016 11:35

Hi everyone. For a long time I`ve been searching how to make the unpacking process faster. There is one guy whose repacks are unpacking very quickly, comparing to mine or others.
http://funkyimg.com/i/2jewZ.png
By looking at this screen we can see the (almost) full CPU load and high load on my SSD (on HDDs the load is also high. It can go higher depending on type of SSD/HDD). The same pattern is seen in CODEX / RLD setups.
I couldn`t come up with such results. I tried to take a look in the temp folder of that setup, and haven`t seen anything new. Just saw facompress_mt.dll which did not give me any good.
Is there anyone who can point me to the right direction or these are some secret techniques? Thank you.


All times are GMT -7. The time now is 02:07.

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