Important information: this site is currently scheduled to go offline indefinitely by end of the year.

File Cutter

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

File Cutter

Post by aluigi »

if you need a filecutter for uploading a small sample of your big archives and files you can use the following script for quickbms that creates 2 files of 1 megabyte each one:

Code: Select all

# filecutter script for QuickBMS
# script for QuickBMS http://aluigi.org/papers.htm#quickbms

get SIZE asize
math CHUNKSZ = 0x100000
if SIZE <= CHUNKSZ
    cleanexit
endif

math OFFSET = 0
get NAME filename
string NAME += "_"
string NAME += OFFSET
string NAME += "_"
string NAME += SIZE
log NAME OFFSET CHUNKSZ

math OFFSET = SIZE
math OFFSET -= CHUNKSZ
get NAME filename
string NAME += "_"
string NAME += OFFSET
string NAME += "_"
string NAME += SIZE
log NAME OFFSET CHUNKSZ
I guess the moderators would like to put it sticky or add it to the help page because many users reported problems with the other existent file cutters so I'm sure this solution will avoid any problem.

let me know any suggestion or improvement
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: File Cutter

Post by Mr.Mouse »

Or you can use the old FileCutter tool, you can find in the rules, or here.
You do not have the required permissions to view the files attached to this post.
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: File Cutter

Post by Mr.Mouse »

FileCutterComplete.zip
Try this one if the above doesn't work.
You do not have the required permissions to view the files attached to this post.
ZanderPander777
ultra-n00b
Posts: 1
Joined: Tue May 28, 2019 4:26 pm

Re: File Cutter

Post by ZanderPander777 »

neither of them work
Post Reply