Post: Need Help With My New Tool
03-26-2011, 06:05 PM #1
Correy
I'm the Original
(adsbygoogle = window.adsbygoogle || []).push({}); hey guys, it's my first attempt creating a patch decompresser but i need help with the coding, anyone who is willing to help it would be much appriesatied and also credits will be given.

also, i've wiped my msn by accident so add [email][email protected][/email]

Thanks.
(adsbygoogle = window.adsbygoogle || []).push({});

The following user groaned Correy for this awful post:

MeowDev
03-26-2011, 07:05 PM #2
tylerallmighty
Human After All
Originally posted by xCorrey
hey guys, it's my first attempt creating a patch decompresser but i need help with the coding, anyone who is willing to help it would be much appriesatied and also credits will be given.

also, i've wiped my msn by accident so add [EMAIL="[email protected]"][email protected][/EMAIL]

Thanks.

ummm... I dont think its possible in vb. What are you using? C++?
03-26-2011, 08:01 PM #3
Correy
I'm the Original
Originally posted by bananaman
ummm... I dont think its possible in vb. What are you using? C++?


it is, it's called console application.
i'm coding this in visual studio ultimate then putting it into profesional
03-26-2011, 10:17 PM #4
tylerallmighty
Human After All
Originally posted by xCorrey
it is, it's called console application.
i'm coding this in visual studio ultimate then putting it into profesional


Hmmmm. I might have an idea. I'll get it later because I'm on my phone ATM. Smile
03-26-2011, 10:36 PM #5
Bang Tidy
Nutty Is Dead...
Originally posted by xCorrey
hey guys, it's my first attempt creating a patch decompresser but i need help with the coding, anyone who is willing to help it would be much appriesatied and also credits will be given.

also, i've wiped my msn by accident so add [email][email protected][/email]

Thanks.


Well when i made my cod5 tool with compresser, and decompresser, i made loads of .bat files, which offzipeed and packzipped different parts of the patch. then i called them in on vb.net from a shell

Like i was going to make a tool like i did for cod5 but for cod4 but i had no time, but the idea i had was, it had 1st step called offzip patch, it wud then offzip the patch, then below all the important gsc will show in different buttons, so the 1st step cud show:

unpack patch, then make a .bat file with

    offzip.exe -a -z -15 patch_mp.ff ./ 0 
del 0000000e.dat
del 0000e0d7.dat
del 0000f7d8.dat
del 0000d0ec.dat
del 0000c6b1.dat
del 000a61a5.dat
del 000b2c24.dat
del 000bf08f.dat
del 000ca4fb.dat
del 000d36fc.dat
del 000dec3d.dat
del 000eafb6.dat
del 000f9134.dat
del 0003ca23.dat
del 0003f759.dat
del 0004b022.dat
del 0004dffc.dat
del 0004e09c.dat
del 0005d834.dat
del 0006cee8.dat
del 0007ab04.dat
del 0008db27.dat
del 00011c84.dat
del 00012edc.dat
del 00014d25.dat
del 00016a92.dat
del 00036b52.dat
del 00039c32.dat
del 00044dcd.dat
del 00050e22.dat
del 00051c9f.dat
del 00074a30.dat
del 00083c33.dat
del 000111ca.dat
del 000161fd.dat
del 000476cf.dat
del 000521da.dat
del 000659ce.dat
del 00055714.dat
del 00051896.dat
del 00051789.dat
del 00050290.dat
del 00042528.dat
del 00017612.dat
del 00014439.dat
del 00013878.dat
del 00012849.dat
del 00010961.dat
del 0009979b.dat
del 0004762f.dat
del 0001854d.dat
del 0001559b.dat
del 000511b6.dat


This wud delete the files which you dont need and leave the files you need. also when you click a button u cud have a new form opening and it showing a tutorial in text on the hex values for the joining of the .dats

Heres the offsets for the patch : You must login or register to view this content.

Then the packzipping part is: u cud put in a .bat file

    packzip.exe -o 0x00030783 -w -15 00030783.dat patch_mp.ff 

pause
packzip.exe -o 0x0001ec06 -w -15 0001ec06.dat patch_mp.ff
pause
packzip.exe -o 0x0001b571 -w -15 0001b571.dat patch_mp.ff
pause
packzip.exe -o 0x0002cbcc -w -15 0002cbcc.dat patch_mp.ff
pause
packzip.exe -o 0x00025c1d -w -15 00025c1d.dat patch_mp.ff
pause
packzip.exe -o 0x000295f3 -w -15 000295f3.dat patch_mp.ff
echo.
packzip.exe -o 0x000338ec -w -15 000338ec.dat patch_mp.ff
pause
packzip.exe -o 0x0001987e -w -15 0001987e.dat patch_mp.ff
pause
packzip.exe -o 0x00022125 -w -15 00022125.dat patch_mp.ff


This was always my idea on the cod4 tool, its just i never had the time in doing this Smile

Hope this helped a bit :y:

The following 2 users say thank you to Bang Tidy for this useful post:

Correy, Kif
03-26-2011, 10:43 PM #6
Correy
I'm the Original
Originally posted by Nutty
Well when i made my cod5 tool with compresser, and decompresser, i made loads of .bat files, which offzipeed and packzipped different parts of the patch. then i called them in on vb.net from a shell

Like i was going to make a tool like i did for cod5 but for cod4 but i had no time, but the idea i had was, it had 1st step called offzip patch, it wud then offzip the patch, then below all the important gsc will show in different buttons, so the 1st step cud show:

unpack patch, then make a .bat file with

    offzip.exe -a -z -15 patch_mp.ff ./ 0 
del 0000000e.dat
del 0000e0d7.dat
del 0000f7d8.dat
del 0000d0ec.dat
del 0000c6b1.dat
del 000a61a5.dat
del 000b2c24.dat
del 000bf08f.dat
del 000ca4fb.dat
del 000d36fc.dat
del 000dec3d.dat
del 000eafb6.dat
del 000f9134.dat
del 0003ca23.dat
del 0003f759.dat
del 0004b022.dat
del 0004dffc.dat
del 0004e09c.dat
del 0005d834.dat
del 0006cee8.dat
del 0007ab04.dat
del 0008db27.dat
del 00011c84.dat
del 00012edc.dat
del 00014d25.dat
del 00016a92.dat
del 00036b52.dat
del 00039c32.dat
del 00044dcd.dat
del 00050e22.dat
del 00051c9f.dat
del 00074a30.dat
del 00083c33.dat
del 000111ca.dat
del 000161fd.dat
del 000476cf.dat
del 000521da.dat
del 000659ce.dat
del 00055714.dat
del 00051896.dat
del 00051789.dat
del 00050290.dat
del 00042528.dat
del 00017612.dat
del 00014439.dat
del 00013878.dat
del 00012849.dat
del 00010961.dat
del 0009979b.dat
del 0004762f.dat
del 0001854d.dat
del 0001559b.dat
del 000511b6.dat


This wud delete the files which you dont need and leave the files you need. also when you click a button u cud have a new form opening and it showing a tutorial in text on the hex values for the joining of the .dats

Heres the offsets for the patch : You must login or register to view this content.

Then the packzipping part is: u cud put in a .bat file

    packzip.exe -o 0x00030783 -w -15 00030783.dat patch_mp.ff 

pause
packzip.exe -o 0x0001ec06 -w -15 0001ec06.dat patch_mp.ff
pause
packzip.exe -o 0x0001b571 -w -15 0001b571.dat patch_mp.ff
pause
packzip.exe -o 0x0002cbcc -w -15 0002cbcc.dat patch_mp.ff
pause
packzip.exe -o 0x00025c1d -w -15 00025c1d.dat patch_mp.ff
pause
packzip.exe -o 0x000295f3 -w -15 000295f3.dat patch_mp.ff
echo.
packzip.exe -o 0x000338ec -w -15 000338ec.dat patch_mp.ff
pause
packzip.exe -o 0x0001987e -w -15 0001987e.dat patch_mp.ff
pause
packzip.exe -o 0x00022125 -w -15 00022125.dat patch_mp.ff


This was always my idea on the cod4 tool, its just i never had the time in doing this Smile

Hope this helped a bit :y:


you're amazing. i love you ha :love:.
check out you're new vbux =D

The following user thanked Correy for this useful post:

Bang Tidy
03-26-2011, 10:48 PM #7
Bang Tidy
Nutty Is Dead...
Originally posted by xCorrey
you're amazing. i love you ha :love:.
check out you're new vbux =D


ahh thanks mate for the vbux, also if you want help with any more parts of the tool then just pm me mate, also you cud do like i did for cod5 again. i dont know if you saw it but it has downloads, tutorials etc, just a nice little add on idea mate =D

The following user thanked Bang Tidy for this useful post:

Correy
03-26-2011, 11:39 PM #8
MeowDev
Power to the Premium
your program is gonna suck.
03-27-2011, 03:39 AM #9
Originally posted by xCorrey
hey guys, it's my first attempt creating a patch decompresser but i need help with the coding, anyone who is willing to help it would be much appriesatied and also credits will be given.

also, i've wiped my msn by accident so add [email][email protected][/email]

Thanks.


Im here to help! btw are you using this for tree view?

reply back

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo