2k18 Scoreboards|Yes|TSN|MSG|TNT|Sportsnet|ChaosPanel|TNT 2010| ESPN 19| 2001Fox

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

Re: 2k18 Scoreboards | Yes| TSN | MSG | --Updated TNT 1.3 Updated

Postby yeltrah123 on Mon Feb 19, 2018 2:55 am

bongo88 wrote:
ksmiz wrote:I'll look for the instance in the first picture but the other examples look similar so I think they'll display the full thing

yeah, the first one might be different.
also, ima dig into titlecard2 scene files. I would like to know how they get Utah on top line and Jazz on bottom line. it should be somewhere in the scene files, perhaps.
also, i dragged all the titlecard2.iff files into newscorebug.iff. haveing both NewScorebug.VCUIELEMENT and TitleCard2.VCUIELEMENT did nothing. 2k18.exe searched for newscorebug.vcuielement and loaded the scoreboard proper.

but then i deleted newscorebug.vcuielement and renamed "titlecard2.vcuielement" to "newscorebug.vcuielement"
then, the 2k18.exe read the renamed element and loaded the bottom banner during gameplay. :) :) :)
[ Image ]

it might be as simple as copying hex from titlecard2.element to newscorebug element and then dragging all the titlecard2.iff files into newscorebug.iff
or, like all hex, it might just screw it all up :) anyways, havent tested that theory
I gotta cook dinner for the kids. might get back to it later
ciao

that nba on tnt gooeyglobal looks dope!
User avatar
yeltrah123
 
Posts: 324
Joined: Tue Jun 18, 2013 10:55 pm

Re: 2k18 Scoreboards | Yes| TSN | MSG | --Updated TNT 1.3 Updated

Postby bongo88 on Mon Feb 19, 2018 3:42 am

yeltrah123 wrote:that nba on tnt gooeyglobal looks dope!

its just the watermark. you might have to move it around in hex, maybe. attached below
You do not have the required permissions to view the files attached to this post.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby ksmiz on Mon Feb 19, 2018 4:37 am

nice! was wondering about that. guess all I had to do was change the VC_overflow to wrap and it works great job
User avatar
ksmiz
 
Posts: 655
Joined: Mon Mar 13, 2017 4:51 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby TGsoGood on Mon Feb 19, 2018 5:37 am

:applaud:
Follow me on PATREON https://www.patreon.com/TGsoGood
Consider donating: http://cash.me/$TheJohnsonFamily or http://paypal.me/4TheGoods
Follow me on twitter @TGsoGood
Check me out on youtube https://www.youtube.com/channel/UCPydhZ ... PeRSmEVynQ

NBA 2K21 TGsoGood Mods and releases - viewtopic.php?f=267&t=110608
NBA 2K17 TGsoGood Mods and releases - viewtopic.php?f=225&t=102251#p1860681
NBA 2K14 TGsoGood Mods and releases - viewtopic.php?f=153&t=96056
User avatar
TGsoGood
Contributor
Contributor
 
Posts: 6379
Joined: Thu Jul 28, 2011 4:03 am
Location: Nashville, TN

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby John_Hippie on Mon Feb 19, 2018 6:19 am

Wild Idea but, is it possible to have all these scoreboards randomly selected before the start of a game?
John_Hippie
 
Posts: 8
Joined: Thu Jan 18, 2018 11:39 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby bongo88 on Mon Feb 19, 2018 9:39 am

John_Hippie wrote:Wild Idea but, is it possible to have all these scoreboards randomly selected before the start of a game?

Someone with coding experience could make a small exe to randomly select a file, rename it, and then start nba2k18. Or on a simpler scale it could be done through a bat file.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby bongo88 on Mon Feb 19, 2018 5:19 pm

John_Hippie wrote:Wild Idea but, is it possible to have all these scoreboards randomly selected before the start of a game?

Here is a bat file that'll pick a random scorebaord file and move/rename it to the mods folder.
set source=path to the folder where the scoreboards are kept
set target=path to your modded folder

Code: Select all
@echo off

setlocal enabledelayedexpansion

set source=C:\Steam\steamapps\common\NBA 2K18\scoreboards
set target=C:\Steam\steamapps\common\NBA 2K18\waigua

set count=0
set x=0

:: put all the files into a pseudo-array prefixed with "TXT_"
for /r "%source%" %%a in (*.*) do (
    set IFF_!count!=%%~a
    set /a count+=1
)

:: Use the 'modulo' function to get a usable value from system variable %random%
set /a x="%random% %% count"

:: Pull the relevant item out of the "TXT_" 'array'
set chosen=!IFF_%x%!

echo:Random Scoreboard Chosen :: %chosen%
copy /y "%chosen%" "%target%\newscorebug.iff" 1>nul
echo Copying Scoreboard Files
echo msgbox "File %chosen% set as Scoreboard. Press OK to Launch NBA 2K18" > "%temp%\popup.vbs"
wscript.exe "%temp%\popup.vbs"

START steam://rungameid/577800
del "%temp%\popup.vbs"
endlocal


Image
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby John_Hippie on Tue Feb 20, 2018 2:01 pm

bongo88 wrote:
John_Hippie wrote:Wild Idea but, is it possible to have all these scoreboards randomly selected before the start of a game?

Here is a bat file that'll pick a random scorebaord file and move/rename it to the mods folder.
set source=path to the folder where the scoreboards are kept
set target=path to your modded folder

Code: Select all
@echo off

setlocal enabledelayedexpansion

set source=C:\Steam\steamapps\common\NBA 2K18\scoreboards
set target=C:\Steam\steamapps\common\NBA 2K18\waigua

set count=0
set x=0

:: put all the files into a pseudo-array prefixed with "TXT_"
for /r "%source%" %%a in (*.*) do (
    set IFF_!count!=%%~a
    set /a count+=1
)

:: Use the 'modulo' function to get a usable value from system variable %random%
set /a x="%random% %% count"

:: Pull the relevant item out of the "TXT_" 'array'
set chosen=!IFF_%x%!

echo:Random Scoreboard Chosen :: %chosen%
copy /y "%chosen%" "%target%\newscorebug.iff" 1>nul
echo Copying Scoreboard Files
echo msgbox "File %chosen% set as Scoreboard. Press OK to Launch NBA 2K18" > "%temp%\popup.vbs"
wscript.exe "%temp%\popup.vbs"

START steam://rungameid/577800
del "%temp%\popup.vbs"
endlocal


[ Image ]

That was fast, good work man
John_Hippie
 
Posts: 8
Joined: Thu Jan 18, 2018 11:39 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby John_Hippie on Tue Feb 20, 2018 2:01 pm

bongo88 wrote:
John_Hippie wrote:Wild Idea but, is it possible to have all these scoreboards randomly selected before the start of a game?

Here is a bat file that'll pick a random scorebaord file and move/rename it to the mods folder.
set source=path to the folder where the scoreboards are kept
set target=path to your modded folder

Code: Select all
@echo off

setlocal enabledelayedexpansion

set source=C:\Steam\steamapps\common\NBA 2K18\scoreboards
set target=C:\Steam\steamapps\common\NBA 2K18\waigua

set count=0
set x=0

:: put all the files into a pseudo-array prefixed with "TXT_"
for /r "%source%" %%a in (*.*) do (
    set IFF_!count!=%%~a
    set /a count+=1
)

:: Use the 'modulo' function to get a usable value from system variable %random%
set /a x="%random% %% count"

:: Pull the relevant item out of the "TXT_" 'array'
set chosen=!IFF_%x%!

echo:Random Scoreboard Chosen :: %chosen%
copy /y "%chosen%" "%target%\newscorebug.iff" 1>nul
echo Copying Scoreboard Files
echo msgbox "File %chosen% set as Scoreboard. Press OK to Launch NBA 2K18" > "%temp%\popup.vbs"
wscript.exe "%temp%\popup.vbs"

START steam://rungameid/577800
del "%temp%\popup.vbs"
endlocal


[ Image ]

That was fast, good work man
John_Hippie
 
Posts: 8
Joined: Thu Jan 18, 2018 11:39 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby bongo88 on Sat Feb 24, 2018 2:38 pm

A batch file i wrote for myself. Figured i'd share it here in case anybody wants to use it.

This batch file lets you select which scoreboard you want to use.
things you have to change:
set source= Path to your Scoreboards Folder
set target= Path to your modded folder

Code: Select all
@echo off
setlocal enabledelayedexpansion


set source=C:\Steam\steamapps\common\NBA 2K18\scoreboards
set target=C:\Steam\steamapps\common\NBA 2K18\waigua

set count=0

:
:: Read in files
for /r "%source%" %%x in (*.*) do (
  set /a count=count+1
  set choice[!count!]=%%x
)

:
echo.
echo Select one:
echo.

:
:: Print list of files
for /l %%x in (1,1,!count!) do (
   echo %%x] !choice[%%x]!
)
echo.

:
:: Retrieve User input
set /p select= "select file by number:"
echo.

:
:: Print out selected filename

echo You chose !choice[%select%]!


copy /y "!choice[%select%]!" "%target%\newscorebug.iff" 1>nul

echo msgbox "File !choice[%select%]! set as Scoreboard. Press OK to Launch NBA 2K18" > "%temp%\popup.vbs"
wscript.exe "%temp%\popup.vbs"

START steam://rungameid/577800
del "%temp%\popup.vbs"
endlocal


Image
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby TGsoGood on Sat Feb 24, 2018 3:15 pm

another option to easily switch scoreboards is to just use jonesoft generic mod enabler.
That is what I use for most of my mods and I can swap scoreboards in and out while the game is running.

phpBB [video]
Follow me on PATREON https://www.patreon.com/TGsoGood
Consider donating: http://cash.me/$TheJohnsonFamily or http://paypal.me/4TheGoods
Follow me on twitter @TGsoGood
Check me out on youtube https://www.youtube.com/channel/UCPydhZ ... PeRSmEVynQ

NBA 2K21 TGsoGood Mods and releases - viewtopic.php?f=267&t=110608
NBA 2K17 TGsoGood Mods and releases - viewtopic.php?f=225&t=102251#p1860681
NBA 2K14 TGsoGood Mods and releases - viewtopic.php?f=153&t=96056
User avatar
TGsoGood
Contributor
Contributor
 
Posts: 6379
Joined: Thu Jul 28, 2011 4:03 am
Location: Nashville, TN

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby ksmiz on Mon Feb 26, 2018 5:13 am

Image

Saw this right now. Still wonder if adding the records could be figured out

Probably would have to add it to scoreboard_opt hmm
User avatar
ksmiz
 
Posts: 655
Joined: Mon Mar 13, 2017 4:51 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby bongo88 on Mon Feb 26, 2018 11:57 am

ksmiz wrote:[ Image ]
Saw this right now. Still wonder if adding the records could be figured out
Probably would have to add it to scoreboard_opt hmm

I havent fiddled with the record stuff yet.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby bongo88 on Mon Feb 26, 2018 12:00 pm

Adjusting the up/down animation of the foul box.
putting this here before i forget. i don't think i have it backed up anywhere.

Image
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am


Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby Manni Live on Tue Feb 27, 2018 3:33 pm

Thanks for the tutorial much appreciated (Y)
Image

For all my patches for NBA 2K16 & NBA 2K14 Visit http://mannipatches.blogspot.ca/

Flickr Page https://www.flickr.com/photos/99620982@N03/


If your willing to support feel free to donate :)

Image
User avatar
Manni Live
Y'all spinning around like ballers. Seething with jealousy, I am.
Contributor
 
Posts: 3091
Joined: Wed Feb 22, 2012 12:24 am
Location: Toronto,Canada

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby TGsoGood on Tue Feb 27, 2018 5:10 pm

Bongo88 I was able to upload the video to youtube as you requested

phpBB [video]

Big Thanks to Bongo88 for creating this tutorial and allowing me to post it here on the channel. (This video is ad free)
Follow me on PATREON https://www.patreon.com/TGsoGood
Consider donating: http://cash.me/$TheJohnsonFamily or http://paypal.me/4TheGoods
Follow me on twitter @TGsoGood
Check me out on youtube https://www.youtube.com/channel/UCPydhZ ... PeRSmEVynQ

NBA 2K21 TGsoGood Mods and releases - viewtopic.php?f=267&t=110608
NBA 2K17 TGsoGood Mods and releases - viewtopic.php?f=225&t=102251#p1860681
NBA 2K14 TGsoGood Mods and releases - viewtopic.php?f=153&t=96056
User avatar
TGsoGood
Contributor
Contributor
 
Posts: 6379
Joined: Thu Jul 28, 2011 4:03 am
Location: Nashville, TN

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby bongo88 on Wed Feb 28, 2018 1:53 am

thanks for posting it on your youtube channel TGsoGood. I did ask him if he could post it on his channel since i don't use youtube and he has a nice channel filled with great tutorial videos.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby exrxixxx on Wed Feb 28, 2018 4:48 am

ksmiz wrote:[ Image ]

Saw this right now. Still wonder if adding the records could be figured out

Probably would have to add it to scoreboard_opt hmm



If you check back this your ealier post:

ksmiz wrote:
exrxixxx wrote:Same technique should be used for the FULL CITY NAME. You just have to find correct ***.iff file that displays city name. Unfortunately "starting lineup."iff shows only team name.


For city name would this work? Any idea what this file is? right before the starting lineup when the players are shooting around warming up
[ Image ]

EDIT:
The file is titlecard2

Unfortunately it does not work as I thought it would. It displays the whole thing
[ Image ]

This is a more accurate way to represent what it is pointing to
[ Image ]

However I did find that this file shows their records too as well as stadium name. Wonder if it would be possible to add records under the teams to a scoreboard
Just took a quick example from google to show what I am talking about
[ Image ]

Here's a preview of the progress with the root sports scorebug. Would like to figure out some animation stuff but it is coming along.
Notification box:
I'm not great with high quality graphics so any help with my notification box would be appreciated
[ Image ]
Shot Clock glow:
[ Image ]


... ... ... just search for other bytes at titlecard2.iff file that displays season W-L record and repeat them at newscorebug's VCUIELEMENT file.
At any position at at this stage - let's say put onto the away team names offset.

Show the screenshot to prove this works, then I will try to share ideas (implemented at NBA2K14 by me) how to get "extra" text attributes to scoreboard, 'cos as I understand now you do not have free space to display W-L records

... NBA2k14 - it looked like this (data taken from titlecard and added to nescorebug iff file):

Image
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: 2k18 Scoreboards | Yes| TSN | MSG |TNT| -City name in scoreboard-

Postby ksmiz on Wed Feb 28, 2018 5:44 am

exrxixxx wrote:just search for other bytes at titlecard2.iff file that displays season W-L record and repeat them at newscorebug's VCUIELEMENT file.
At any position at at this stage - let's say put onto the away team names offset.

Show the screenshot to prove this works, then I will try to share ideas (implemented at NBA2K14 by me) how to get "extra" text attributes to scoreboard, 'cos as I understand now you do not have free space to display W-L records

... NBA2k14 - it looked like this (data taken from titlecard and added to nescorebug iff file):

[ Image ]


Yes it did work already! I can replace team names with records for sure.
I hope you can help with the: how to get "extra" text attributes to scoreboard
That's the part we would need help figuring out. I just started with scoreboards like 2 weeks ago so it's hard to think outside the box of what to do with adding new elements.

The arena name is a nice touch too! That was another thing. Wow how you figured any of this is great I really appreciate you coming back to share advice and guidance

Image

There's only 5 things/text boxes in titlecard2:
2c95128f-arena
f4cc75a5-city + team away
518f805d-record away
a78d6e47-city + team home
221915a0-record home
You do not have the required permissions to view the files attached to this post.
User avatar
ksmiz
 
Posts: 655
Joined: Mon Mar 13, 2017 4:51 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby bongo88 on Wed Feb 28, 2018 7:55 am

in the blender files for 2k18 scoreboard there is a possesion away & possesion home meshes.

the scorebug_opt.scn file there are these entries:
Code: Select all
},
            "TIMEOUT_AWAY": {
               "Mesh": "timeouts_awayShape",
               "Count": 42
            },
            "BONUS_AWAY": {
               "Mesh": "bonus_strokeShape1",
               "Count": 24
            },
            "TIMEOUT_HOME": {
               "Mesh": "timeouts_homeShape",
               "Count": 42
            },
            "BONUS_HOME": {
               "Mesh": "bonus_strokeShape2",
               "Count": 24
            },
            "POSSESSION_AWAY": {
               "Mesh": "poss_awayShape",
               "Count": 6
            },
            "POSSESSION_HOME": {
               "Mesh": "poss_homeShape"
            },
            "shotclock": {
               "Mesh": "shotclockShape1",
               "Count": 138
            }

you could try messing with the possesion files/meshes in scorebug_opt.scn and blender to see if those meshes can be activated and textured.

edit: just read exrxixxx said he could provide more information. that would be very nice :)
edit2: nevermind about the possesion meshes. i forgot these are in game elements and not texture. guess we'll wait for exrxixxx to explain how to do it.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby exrxixxx on Thu Mar 01, 2018 4:28 am

Image


This is just an IDEA how get EXTRA TEXT, no guarantees it works with 2k18 (It worked for 2k14).
Sorry in advance if your efforts will not be successful, but I hope it is worth to try.
GL GL GL
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: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby ksmiz on Fri Mar 02, 2018 3:09 pm

exrxixxx wrote:This is just an IDEA how get EXTRA TEXT, no guarantees it works with 2k18 (It worked for 2k14).
Sorry in advance if your efforts will not be successful, but I hope it is worth to try.
GL GL GL


wow thanks! that makes sense I will see how it goes and post updates


Just to add to scoreboard notes stuff. I don't think I saw this anywhere

group1_group1.fc9222190fdb114e.animation - the first 2 floats are x, y of the "3" that shows up when you make a three for the home team
group2_group2.1231fb251137301e.animation - same but away team
User avatar
ksmiz
 
Posts: 655
Joined: Mon Mar 13, 2017 4:51 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Blender Scoreboard Tutorial

Postby bongo88 on Sun Mar 04, 2018 4:22 pm

Sportsnet Scoreboard Released
i found this mod: http://www.moddingway.com/file/190734.html
i changed the texture a little and ported it to nba2k18.
the original texture was from exrxixxx (sportsnet v3). then the base texture was edited by Magnuz (sportsnet 2016). Then i did some slight modifications on this texture for this release.
anyways, that's the credit history of this texture.
Image

Download: https://drive.google.com/open?id=1KoIGB ... St9tR6az0m
-----------------------------------------------------------------------------------------------------------------
I was just going to keep it for myself, but it turned out so pretty i figured somebody might want to use it. I usually buy nba2k basketball games ever three or four years, and will probably stick with nba2k18 for the next three or four years. So don't expect much from me in the near/far future.
Anyways, enjoy the scoreboard. this sportsnet scoreboard is my new favorite.
Anyways, this is my last scoreboard. I'll be around randomly for the awesome courts and faces that are hosted here.
bongo88
 
Posts: 754
Joined: Sat Jul 20, 2013 3:30 am

Re: 2k18 Scoreboards | Yes| TSN | MSG |TNT| Sportsnet Released -!!Last One!! -Ciao!

Postby TwisT on Sun Mar 04, 2018 5:33 pm

All your work has been appreciated!
Image Image
Checkout my artwork: Artstation - Instagram - Twitter
User avatar
TwisT
 
Posts: 584
Joined: Mon Sep 25, 2017 4:26 am

PreviousNext

Return to NBA 2K18 Modding

Who is online

Users browsing this forum: No registered users and 40 guests