[christmas presents] Structure of NBA2K9 IFF

A hub for everything related to NBA 2K9 modding. Releases, previews, requests, and other modding discussion belongs here.

[christmas presents] Structure of NBA2K9 IFF

Postby nbastar on Thu Dec 25, 2008 11:04 pm

This may be useful.
http://hades.net.cn/post/nba2k9_iff_format.html
Merry Christmas
Last edited by nbastar on Thu Dec 25, 2008 11:24 pm, edited 1 time in total.
nbastar
 
Posts: 7
Joined: Thu Sep 11, 2008 10:20 am

Re: [christmas presents] Struct of NBA2K9 IFF

Postby Angelo on Thu Dec 25, 2008 11:13 pm

is this the iff tool? if it is then thank you so much

edit: nah this is not the tool this is just the structure of the iff program and they are just a bunch of codes and i know this is not complete..

can you please just make this into like a GUI program?

btw thanks for posting this info
Image
User avatar
Angelo
Holy Tits
NLSC Team Member
 
Posts: 5898
Joined: Fri Nov 03, 2006 1:40 am
Location: Philippines

Re: [christmas presents] Structure of NBA2K9 IFF

Postby [Double LC] on Thu Dec 25, 2008 11:32 pm

Service Unavailable
GOD is GOOD, All the Time !!!

[Facebook] [Double LC - Blog] [bbs.baballs.com]
Image
[<<CLICK ME>>]
"Sorry My Sucks ENGLISH !!!"
User avatar
[Double LC]
 
Posts: 509
Joined: Mon Dec 17, 2007 12:46 pm
Location: Bayan Ni Juan

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Angelo on Thu Dec 25, 2008 11:37 pm

Ping go to YM and lets talk there
Image
User avatar
Angelo
Holy Tits
NLSC Team Member
 
Posts: 5898
Joined: Fri Nov 03, 2006 1:40 am
Location: Philippines

Re: [christmas presents] Struct of NBA2K9 IFF

Postby nbastar on Thu Dec 25, 2008 11:39 pm

Kris wrote:is this the iff tool? if it is then thank you so much

edit: nah this is not the tool this is just the structure of the iff program and they are just a bunch of codes and i know this is not complete..

can you please just make this into like a GUI program?

btw thanks for posting this info


As the saying goes,Give a man a fish, and you feed him for a day; teach a man to fish, and you get rid of him on the weekend. :lol:
nbastar
 
Posts: 7
Joined: Thu Sep 11, 2008 10:20 am

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Patr1ck on Thu Dec 25, 2008 11:41 pm

Code: Select all
TITLE: Structure of NBA2K9 IFF
AUTHOR: hades
DATE: 2008-12-19,22:36
LINK: http://hades.net.cn/post/nba2k9_iff_format.html

typedef struct {
IFF_HEADER iffHeader;
IFF_MAINDATA iffHadesData[dwDataFileCount];
} IFF_FILE;

typedef struct {
DWORD dwMagic;
DWORD dwSize;
DWORD dwFileLen;
DWORD dwReserve;
DWORD dwDataFileCount;
DWORD dwUnknow1;
DWORD dwSubFileCount;
DWORD dwUnknow2;
IFF_HEADER_DATA ihdData[dwDataFileCount];
DWORD dwSubFile[dwSubFileCount];
IFF_HEADER_SUB ihdSub[dwSubFileCount];
} IFF_HEADER;

typedef struct {
DWORD dwName;
DWORD dwType;
DWORD dwUnknow1;
DWORD dwUnCompressLen;
DWORD dwUnknow2;
DWORD dwStartOffset;
DWORD dwCompressLen;
DWORD dwReserve;
} IFF_HEADER_DATA;

typedef struct {
DWORD dwName;
DWORD dwType;
DWORD dwSubCount;
DWORD dwOffset[dwSubCount];
} IFF_HEADER_SUB;

typedef struct {
DWORD dwFlag;
DWORD dwUnCompressLen; //reverse
DWORD dwCompressLen; //reverse
DWORD dwUnknow1;
DWORD dwHades;
BYTE btData[dwCompressLen-20];//compressed
} IFF_MAINDATA;

by hades(hades.net.cn)
Patr1ck
Administrator
Administrator
 
Posts: 13335
Joined: Thu May 19, 2005 5:54 pm
Location: Pasadena, California, US

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Ballyoop on Fri Dec 26, 2008 1:31 am

whats in this stracture? how can we use it?
Image

is this it, that's what it's all about, manny?
User avatar
Ballyoop
collywobbles
 
Posts: 1356
Joined: Fri Aug 15, 2008 2:41 pm
Location: Auckland

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Patr1ck on Fri Dec 26, 2008 3:48 am

With this structure programmers should be able to unpack the files in order to create an importer/exporter. I am suspicious, though. He put his own name in the code.
Patr1ck
Administrator
Administrator
 
Posts: 13335
Joined: Thu May 19, 2005 5:54 pm
Location: Pasadena, California, US

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Ballyoop on Fri Dec 26, 2008 3:55 am

somethings fishy....~~~ :?
Image

is this it, that's what it's all about, manny?
User avatar
Ballyoop
collywobbles
 
Posts: 1356
Joined: Fri Aug 15, 2008 2:41 pm
Location: Auckland

Re: [christmas presents] Structure of NBA2K9 IFF

Postby shadowgrin on Fri Dec 26, 2008 4:35 am

We must be wary of potential assholes.
HE'S USING HYPNOSIS!
JaoSming2KTV wrote:its fun on a bun
shadowgrin
Doesn't negotiate with terrorists. NLSC's Jefferson Davis. The Questioneer
 
Posts: 23229
Joined: Thu Dec 12, 2002 6:21 am
Location: In your mind

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Fibaa on Fri Dec 26, 2008 5:20 am

This isn't bullshits, i have exporter with this structure, and i talk with guy, he tell me that he don't have any free times to finnish project, because he don't like him editor. Editor is very slowly.
Fibaa
 
Posts: 169
Joined: Sun Jun 15, 2008 8:57 am

Re: [christmas presents] Structure of NBA2K9 IFF

Postby Patr1ck on Fri Dec 26, 2008 6:35 am

It just looks funny with "hades" in the code.
Patr1ck
Administrator
Administrator
 
Posts: 13335
Joined: Thu May 19, 2005 5:54 pm
Location: Pasadena, California, US

Re: [christmas presents] Structure of NBA2K9 IFF

Postby nbastar on Fri Dec 26, 2008 10:21 am

Fibaa wrote:This isn't bullshits, i have exporter with this structure, and i talk with guy, he tell me that he don't have any free times to finnish project, because he don't like him editor. Editor is very slowly.

Editor is very slowly?the demo version is protect by Code Virtualizer,so it be come slowly,just a demo,i remember somebody told u.
Not that he dislike his editor ,just he haven a lot of other works to do.
understand?baby
nbastar
 
Posts: 7
Joined: Thu Sep 11, 2008 10:20 am

Re: [christmas presents] Structure of NBA2K9 IFF

Postby nbastar on Fri Dec 26, 2008 10:26 am

Pdub wrote:It just looks funny with "hades" in the code.

just a variable name,you can change it to any name if you want
nbastar
 
Posts: 7
Joined: Thu Sep 11, 2008 10:20 am


Return to NBA 2K9 Modding

Who is online

Users browsing this forum: No registered users and 1 guest