• iamLillard • floors [2014 courts RELEASED]

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

Re: • Texmod floors • NEED HEX EDITORS

Postby iamLillard on Tue Oct 29, 2013 8:31 pm

exrxixxx wrote:
iamLillard wrote:
exrxixxx wrote:
Sixers85 wrote:I open the concept file and I see...
so I think if this method have success I can edit normal court iff texuture and use the image only to put logos or line than in default court don't exist

for example I can put MSG logo on knicks court or @nyknicks logos in default knicks court without change the 3d model


Exactly.
Only maybe it could be done to some more courts, because NYK probably use just one color (white) for all the lines.
Probably need to find court (courts) who have more line colors.

As I said I going to boos quality x2 times from 2846x1104, if succeded it will be enoung quality I suppose to fulfil any court modder's idea.

By the way, I am a huge fan of generic 2K lines (3pts. etc.) becayse these are vectors and it is impossible to achieve their quality even with 1000000x1000000 texture I suppose


I agree, but if u win with this method i will show u I do crystal clear lines (Y) (BTW can U fill the high quality image to exact court size? the actual image is going way outside the lines, if u can manage somehow to keep or double the pixels as u sayd and keep the image on the court surface that will be an extra evolution (Y)


2846x1104 is already won and completely ready to make some courts.
Just need to boost some more

"BTW can U fill the high quality image to exact court size? the actual image is going way outside the lines"
Project was not started to make any court by myself.
Find correct field dimensions by yourself and share that number with others in the forum.
If total wooden parquet including boundaries is 2846x1104, so playing area is smaller. Maybe 2000x920, maybe 2120x840, I do not know. This is whta you have to discover by yourself. Import the texture, test, import, test and import again, test, and you will find out the playing area.


Ok will play a litle bit with this import resize import resize thing. The only thing I want is that the actual playing surface to be as high dimension as can 2000x920 or 20120x840 will result in pritty low quality but I'm pacient and will wait :applaud: (so far this is unbelivable)
User avatar
iamLillard
 
Posts: 963
Joined: Mon Sep 17, 2012 4:54 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Tue Oct 29, 2013 8:33 pm

Sixers85 wrote:exactly, this is what i'm talking about

naturally, need to make a complete tutorial for explain how to apply this method on your preferred court iff file....and not only a general court like in r4zor method.
I don't know if this solution is possible...but if it's possible will be the solution of the court problem.



The tutorial is pretty simple.
I will write the basics in minutes
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby JBulls on Tue Oct 29, 2013 8:38 pm

exrxixxx wrote:
There's no reason to make the logos larger than 1024x1024 I agree, but on some courts they're as small as 256x256, that's what I'm trying to change

It just need maybe additional notes on "spacing" between separate items in the file, will write later.


Great, that's what I'm waiting for (Y)
User avatar
JBulls
 
Posts: 685
Joined: Tue Oct 09, 2012 2:59 pm
Location: Durham, N.C.

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Tue Oct 29, 2013 9:02 pm

TURORIAL how to import large textures to the court files.

Currently maximum possibble texture is 3.145.728 pixels total (3072x1024 or 3145728x1, any combination; we are talking about 2846x1104 pcs here, it is almost maximum).

First you have to find in any *.iff file (must be decompressed) where these sectors are (similar data as in the picture).
Easiest way is to hex bytes-search for 44 58 54 35, what in latin letters would be DXT5. In court files it is in the very beggining of the document, just scroll down a bit)
Those who tried modding some pics have to know that DDS images are compressed with DXT1 or DXT5 method usually, therefore you will meet these 44 58 54 35 in any *.iff which has textures inside.

Image

We use any Hex editor to explore the court's iff file.
Let's analyze. We are increasing court's centre logo
If you know that when looking with NBA2Kmodtool, centre logo is usually somewhere around subfile No.4, then it is the same when exploring the file with hex editor. It will be 4th or 5th DXT text from beggining of file.

So, in our case the main centre logo Identity is AC 36 3F D3 - this is the beggining of sector (same view you will see while exploring file with hex editor
This identity is not needed in our case, I just acknowledge you about some stuff that is nice to know.

Next we see compression method (green frames).
Here we have DXT5 - 44 58 54 35.
We can change those numbers to 44 58 54 31, what would mean DXT1.
Or even can change to BMP, it would be 15 00 00 00.

Data with blue frames is size. Default centre logo size normally has 512x512 ox size, and we need to change it 2846x1104 based on my writings few post aboveI

Actually you can change that data to any size according to the list few line below
....
40 00 - 64 px
80 00 - 128 px
00 01 - 256 px
00 02 - 512 px
00 03 - 768 px
00 04 -1024 px
00 05 - 1280 px
00 06 - 1536 px
00 07 - 1792 px
00 08 - 2048 px
...
00 0C - 3072 px
...
00 10 - 4096 px

So according to this picture it is 1e 0b amd 50 04, earlier it was 00 04 and 00 04 what means width 1024 and height 1024.
I have change it to 2846x1104px.
That is 1e 0b (2846px) 50 04 (1104).

If you do not know hex language and want to change size to your own specific size, use Windows calculator, switch to Scientific mode.
Let's say we would like to have texture;s with 2999 px. Mark circle DEC in Calculator (decimal, what we use everyday), enter 2999, then mark circle HEX, it will convert to hex language.
What we see in Calcualtors display? BB7.
That is tricky now. Hex languege has to be read from right to left, not from left to right.
Furthemore, it always use pair of symbols that have to be understood in specific way.

This is a sysytem how to read in hex:

If we see normally
AB CD EF

then in hex we need to read and understand differently, form righ to left, but no so straight FE DC BA. It likes paired symbols
Correct reading is
EF CD AB

More examples:
3E 24 1F 07
has to be understood as
07 1F 24 3E

I am sure you understand that logic.

But what to do if got only three symbols, 2999 decimal is BB7 hex ?
Answer is: add some zeros to get paired number
BB7 if we add zero is 0BB7

Now we have to convert it correct hex language (from right to left)
0B B7 swapping and result is B7 0B

Same is we want to get correct result with out neccessary texture's size 2846x1104
2846 decimal is B1E in hex.
Add zero. 0B 1E
Swapping to 1E 0B.
This is what must be written (and you will find in Concept 2846x1104 File). This is width

Now height
1104px in decimal, hex is 450
Add zero if it is not paired paired number, 0450
Swapping 50 04.
This is what is also written in Concept 2846x1104 File


This hex lesson is importan as it will be connected with "SPACING" calculation

*******
Let's move on.
The part that is called "WHO KNOWS" in the picture.
While now it look simple, it took ages to find out the effect of that stuff.
I still do not know what that mean (mapping, lighting, doubling of texture if it does not fit to neccessary area, gamma or whatever), this setting was always set too high in order to see clearly the high resolution pics.
Normally you find a lot of 80 05, 80 04 in this area for variout DXT.
Now remember a hex languege... 80 05 in hex, must swap to 05 80, now enter to Windowns calculator under HEX circle - 580 is 1408 decimal.
If it is 80 04 hex, ... decimal 1152.
Who knows what could it mean but we must change to correct minimum. Decimal it is 128. What in hex is 80 00.

So, if something is higher than 1024px. change that area to "80 00". otherwise you will not see anything or only a terrible result

...maybe this "80 00" should not be understood a single object, maybe these are two separate values "80" and "00", I do not know, just use that rule.



""""
SPACING.
In "Concept 2846x1104.rar" file i did not change any spacing value because there were no need yet, but to present myself more seriously :) I will acknowledge how to calculate it because if someboday you would like to change size of more than one file in the court's file, I am sure it will be neccessary to that. Or maybe if you take some other clean coiurt file, maybe some specific contrction would requeire to recalculate spacing.

What is Spacing.
If you look with NBA 2Kx Mod Tool, there are a lots Subfiles - DDS 0, DDS 1, DDS 2, DDS 3 etc,

This are I have marked pink in the picture describes where the data of particular texture begins the file
The very first DXT (DDS 0) always begins from value 1.
You will always find 01 00 00 00 there (from right to left, number 1 decimal is 01 in hex.)
Understand all those bytes xx xx xx xx as a single object

So how to find that number 1 in the file?
If you are pretty advanced you can import new texture into DDS0 and compare two files with hex editors (pros understand that without such remebering), but it is also very safe to find it manualy. Just scroll the document down untill you will notice something extremely different.
In "Conmcept 2846x1104" this is in Offset (address) 2a210.
Go to offset 2a210 and you will quickly notice the difference.

So I mark this very very important offset again
2a210

Now we go to the top of the document where our DXT lives.
If the first document under Spacing are has 01 00 00 00, so the next DXT has 21 4e 29 00.
This actually means that second DXT begins at this value. That is if we do not change the size of the first object (we have to understand that the first DXT texture fits in area from 01 to 21 4e 29 00).
If we want import large texture than first DXT, then of course it will weight more, it's size will have more kB and it will not fit to space between 01 and 21 4e 29 00. It will overlappes the second DXT and second DXT will be damaged.
To avoid that we need to move the beggining of second DXT.

How this is calculated?
We still are using Concept 2846x1104fiel with space 01 and 21 4e 29 00.
Now swap 21 4e 29 00 correctly from right to left as we have to need to enter that to Window calcutor
After swaping we get 00 29 4e 21. Enter to calculator under Hex circle. Do not wonder if first 00 can not be entered, this is OK. zeros are zeros if they are in begining of the value.
After you have 29 4e 21 on calculator's screen you have to add number of bytes that where not used in the file for the texture's data but for some other settings.
As we know already, texture data begins at 2a210 offset. Add this value in calculator.
What we have? 29 4e 21 + 2a210 = 2b f0 31.
This is an offset where second DXT begins. Go to offset 2b f0 31 and you will clearly see that there new data begins.
But note that curson is standing not on very first byte if new texture's data, but on the very next.

This is because... you remember that the first DXT had 01 00 00 00 in SPACING area? That "one" must ne fixed, otherwise all calculatons will ne wrong by one byte.

We have to correct our magic number
2a210 - 1 hex language = 2a20f

This is our new magic number. This is our correct start of where the texture data begins. Use this number in further calculations.

Let's recalculate where second DXT begins again

29 4e 21 + 2a20f = 2b f0 30
If you go to that offset you will see the curor is standing in the very begining of new data.

Quikly calculate the 3rd DXT.
In our file in Spacing area it is written 61 a3 3e
We swap it to 3e a3 61
Add same magic number 2a20f
Result is 41 45 70
Go to offset 414570 and you will see that new patter begins just 2 lines below. This is not we calculated wrong, that mean somebody earlier calculated badly.
If you would chacke the parquet texture in NBA 2Kx Mood Tool you will notice that top left corncer has some foreigh colors. This is because somebody calculated those thing badly or sotheing like like.

What is the point of that?
If you add larger texture, use compare files "after import" and "before import" to find out where your new texture ends. Write down this offset. Use same calculation method and enter new sspacing values into corresponding field. Just think that it different logic. Now you have to subtract magic 2a20f from your offset, then enter this result in "swapped way" ...

If you change only DD3, then you do not need to recalculate DDS0, DD1 and DD2 spacingm because they are before the modifying object.

As you may notice, I did not recalculated spacing in "Concept 2846x1104" because textures that are standing before have priority comparing with center logo texture and they are not visible. I mean logo texture covers everything and no need to recalculate.
The last DDS 7 in the file is coloring of court lines and is important. Our new texture is at DDS 4, but it is not so large that to reach DDS 7 data in the file, thus DDS 7 is not damaged.

So any particular court file may has it's own specific.

I know it is brain-crushing and it is very compliacated, but I explain that because such system can be used within any file (Faces, Uniforms, etc, I suppose).
Who knows, maybe it will be useful for somebody?


*******
How to increase centre logo to be visible though all court.

Export Model 0 Part 1, in Bender or similar stuff scale object 0-2 to desired size (it could be usefull to check how it is doen in Concept 2846x1104 file).
Move offscreen or scale down other object to minimum. That's it.


FINISHED.
Sorry for typing and incorrect language.
Ask if something is not clear or forgot to mention,

P.s. you can't edit parquet DDS size more than to 1024x1024.
If larger for some reason NBA2Kx Mod tool import data in different way than game can read (different sequance of data, etc).
Last edited by exrxixxx on Wed Oct 30, 2013 1:01 am, edited 26 times in total.
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Tue Oct 29, 2013 9:19 pm

OK...this is what I'm talking about.so:
I have edit the large texture and put into only this logo whit the trasparency( texture N°4)
I've change the texture paruqet whit a my new HD texture( texture N°2)

but this is the problem.........the texture parquet overlap all. why? it possible to have it to default one? I want to change only the texture N°4...the rest to default.

Image
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Tue Oct 29, 2013 9:33 pm

Sixers85 wrote:OK...this is what I'm talking about.so:
I have edit the large texture and put into only this logo whit the trasparency( texture N°4)
I've change the texture paruqet whit a my new HD texture( texture N°2)

but this is the problem.........the texture parquet overlap all. why? it possible to have it to default one? I want to change only the texture N°4...the rest to default.



I did not test it yet, but what my knowledges say...
there are two separate parts in Modules 0 (if looking with NBA 2KX Mod Tool).

Modile 0 Part 1
Module 0 Part 2

Part 1 - all the textures we see in the game (parquet, logos, etc.)
Part 2 - all the lines in the game.

If inside the Part 1 we can change which object is overlapping other objects (we know logos are overlapping parquet), we can change that priority and make different priorities.
But this is only inside the same part, in our case Part 1.

Between the Parts 1 and Part 2 we can also change that priority, but that would only mean that whole Part 2 will be always on top Part1 or visa versus. And it can't be undersood in other way (imo).

But there some possible workarounds,
-Manually change transparency of some vectors of the lines via hex edit.
or
-Delete few line verticles with Blender (then add same quantity of deleted verticles somewhere where they are not seen to maintain verticles quantity, otherwise you will not be able to import them back to the game.
or
etc
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby JaoSming on Tue Oct 29, 2013 10:03 pm

thank you for that initial write up! Can't wait for the second part man!
Opinions are my own.

JaoSming
2KTV Producer
NBA 2K Developer
 
Posts: 29904
Joined: Tue Sep 13, 2005 12:45 am
Location: 2K

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Tue Oct 29, 2013 11:56 pm

why the 3d model editing? ( I know how to edit this and the uv mapping in court)
but...mhhhh, maybe you have don't understand my question; in substancy:

- is it possible only change the size value of the center texture logo....leaving the rest unchanged? only the center logo

I read your previous post..seems to be yes :|
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 12:02 am

Sixers85 wrote:why the 3d model editing? ( I know how to edit this and the uv mapping in court)
but...mhhhh, maybe you have don't understand my question; in substancy:

- is it possible only change the size value of the center texture logo....leaving the rest unchanged? only the center logo

I read your previous post..seems to be yes :|


There is no need to import large textures if you are happy with centre logo texture quality while it is not very big.
Do not touch other 3D models. Just slightly increase model 0-2 (logo model) with Blender.
Then it will not affect other stuff.

From what I wrote only use those parts that you need, It is not neccessary to execute whole steps.
Can't see a problem here
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Wed Oct 30, 2013 12:22 am

mhhh, ok..I will try

I'm exploring the default 2k f014.iff and reading step by step your "formula"...values are different, logo is 1024x1024 but there is'nt any value 00 04
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 12:28 am

Sixers85 wrote:mhhh, ok..I will try

I'm exploring the default 2k f014.iff and reading step by step your "formula"...values are different, logo is 1024x1024 but there is'nt any value 00 04


ehh. I do not know what is an origin of Concept 2846x1104 file.
To be hinnest I took it from moddinway, it was last Knicks court, I saw there were already 1024x1024 textures, so it fit me well as I could skip a lot of work.
So do not compare it with original.

If you or someone else wants/needs something to modifiy we can make it here.
Let's say name the original file's name.
I would write down here step by step what to do (not details, just most important aspect that should be done or is done or answer toyour questions)
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Wed Oct 30, 2013 12:36 am

mhhh, yes in reality your experiments are in f011.iff ( new orleans court used as a base for NY court).
the real NY court by 2k is f014.iff and have the same center logo 1024x1024...but I have different value to your tutorial.
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 12:44 am

Sixers85 wrote:mhhh, yes in reality your experiments are in f011.iff ( new orleans court used as a base for NY court).
the real NY court by 2k is f014.iff and have the same center logo 1024x1024...but I have different value to your tutorial.


just calculate how many lines, symbols or something are below 44 58 54 35 out find out where your fields or so.
This is pretty simple. Just your eyes are not used to hex numbers and leters yets and you do not see pattens in this matrix how clear and understable it is.

Name your original file which you need to help.
Ask question and will take a look.

P.s. I will uupload new picture to tutorial that would be from actual Concept file, it would be easier to understand
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Wed Oct 30, 2013 12:46 am

yes,yes...sorry, I was counting wrong the single lines multiple of 2...i found it in the right place, perfect :wink:
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 1:03 am

CHANGED the picture in tutorial.
Now it covers actual |Concept 2846x1104" file
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Wed Oct 30, 2013 1:23 am

mhhh, ok, I've changed the value to the center logo...and put the texture on modtool
I have change to 80 00 and 1e 0b 50 04.............but now, the 3d model is missing, no 3d model...and the curt in game is totally black :?
what's wrong?
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 1:28 am

Sixers85 wrote:mhhh, ok, I've changed the value to the center logo...and put the texture on modtool
I have change to 80 00 and 1e 0b 50 04.............but now, the 3d model is missing, no 3d model...and the curt in game is totally black :?
what's wrong?


I need to see.
Can u send it?
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 2:30 am

Sixers85 wrote:mhhh, ok, I've changed the value to the center logo...and put the texture on modtool
I have change to 80 00 and 1e 0b 50 04.............but now, the 3d model is missing, no 3d model...and the curt in game is totally black :?
what's wrong?


So actually I never tried using this medthod to import larger textures to orther files.
After your post I tried importing stuff to fresh 2K14 file and got Model crash too, what leads to all black court.
These are only first minutes trying to fix, already can avoid module crash and black, will have to find out some other problems.

So I ask you for some patience, so far you may play Concept file which accepts textures 2846x1104 pretty well.
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Wed Oct 30, 2013 7:53 pm

any new?

so I see that when I change the hex codes on the logo texture...there is the 3d model, but if I import the new texture the 3d model is deleted

also, in 2k9iff editor when I change the hex codes...there isn't the texture that i've edited with hex
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

Re: • Texmod floors • NEED HEX EDITORS

Postby tatlopuyo on Wed Oct 30, 2013 8:01 pm

exrxixxx wrote:



can this method be apply in the global.iff ? and ummm anyone there knows about cubemapping pls help me.thanks.
User avatar
tatlopuyo
 
Posts: 768
Joined: Thu May 19, 2011 6:20 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 9:43 pm

Guys I working on this.
Looks like I posted tuturial too quickly (I worked for thius project only 2 days before posting tutorial).

Please note that you only rely in tutorial on all parts except Spacing (it is not enough if you want to crack other courts than Concept 2846x1104).
That is what I trying to learn more at the moment.
I beleieve solution will be pretty simple and not so complicated as explaned in tut.


So wait a little.
By the way if you are creating court with 2846x1104 texture, as I find out it also needs some strech of pictures. Needed to test more earlier.

In general everything goes welland hope it
Last edited by exrxixxx on Wed Oct 30, 2013 10:01 pm, edited 1 time in total.
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby exrxixxx on Wed Oct 30, 2013 9:44 pm

tatlopuyo wrote:
exrxixxx wrote:



can this method be apply in the global.iff ? and ummm anyone there knows about cubemapping pls help me.thanks.


Technicly it can be applied everywhere, but as more textures in the file - more difficult to calculate spacing
User avatar
exrxixxx
Please do not write me PM if you can ask the same in Soreboards thread
 
Posts: 1547
Joined: Sun Nov 18, 2012 10:44 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby JaoSming on Wed Oct 30, 2013 9:45 pm

whoa, didn't see that you updated that tutorial with the second part. Will try it out later, thank you (Y) (Y)
Opinions are my own.

JaoSming
2KTV Producer
NBA 2K Developer
 
Posts: 29904
Joined: Tue Sep 13, 2005 12:45 am
Location: 2K

Re: • Texmod floors • NEED HEX EDITORS

Postby iamLillard on Wed Oct 30, 2013 9:51 pm

haha... this game never stops surprising me.... what u think?
look at the nets jerseys collar, 2 different type of collars in one game at the same time....plus look at how the game makes from a normal Paul Pierce CF a troll...
Image
User avatar
iamLillard
 
Posts: 963
Joined: Mon Sep 17, 2012 4:54 pm

Re: • Texmod floors • NEED HEX EDITORS

Postby Sixers85 on Thu Oct 31, 2013 12:25 am

ahaha...bro..do you know the next gen pc version? :lol:

so this is a screen of the next-gen 2k14.... :wink:
Image
Image
User avatar
Sixers85
Contributor
Contributor
 
Posts: 1555
Joined: Tue Oct 26, 2010 5:19 pm
Location: Italia, Sardinia

PreviousNext

Return to NBA 2K14 Modding

Who is online

Users browsing this forum: No registered users and 7 guests