Main Site | Forum | Rules | Downloads | Wiki | Features | Podcast

NLSC Forum

A hub for everything related to NBA 2K22 modding. Releases, previews, requests, and other modding discussion belongs here.
Post a reply

Need help with arenas

Mon Feb 21, 2022 6:56 am

So I am trying to make some WIAA arenas but whenever I test them the arena is invisible and all the players are blacked out. Can anyone help me solve this issue?

Re: Need help with arenas

Mon Feb 21, 2022 4:01 pm

uncompress/ unzip the share folder and put the entire shared folder into your mods folder. Link below


Shared folder - https://drive.google.com/file/d/1lqS0Xz ... t-gEI/view

Re: Need help with arenas

Mon Feb 21, 2022 6:12 pm

TheEpicGamer wrote:So I am trying to make some WIAA arenas but whenever I test them the arena is invisible and all the players are blacked out. Can anyone help me solve this issue?

you problably edited textures and didnt save those files with the right properties.

So you'll have to open arena.SCNE / items.SCNE / baskets.SCNE and in the "Texture": { part, you'll have to look for each dds texture you edited and clean the lines

for example, if you have edited a file called "leather_cushion_chair.2fc7d44f3d7bfb8b.dds" those lines are the default ones :
Code:
      "leather_cushion_chair.tga": {
         "Width": 512,
         "Height": 512,
         "Mips": 10,
         "Format": "BC1_UNORM",
         "Min": [ 0.0, 0.0, 0.0, 1.0 ],
         "Max": [ 1.0, 1.0, 1.0, 1.0 ],
         "Mask": 16777215,
         "RangeCompress": 15,
         "HeaderSize": 128,
         "Binary": "leather_cushion_chair.2fc7d44f3d7bfb8b.dds"


To fix ONLY this texture, clean it in this way :

Code:
      "leather_cushion_chair.tga": {
         "Min": [ 0.0, 0.0, 0.0, 1.0 ],
         "Max": [ 1.0, 1.0, 1.0, 1.0 ],
         "Mask": 16777215,
         "RangeCompress": 15,
         "Binary": "leather_cushion_chair.2fc7d44f3d7bfb8b.dds"


again repeat FOR EACH dds you edited, it should fix your issue
Post a reply