Scouting - Excel-Sheet

Talk about NBA Live 2005 here.

Scouting - Excel-Sheet

Postby aphexZero on Thu Mar 31, 2005 10:57 am

This is about how i get an overview on my rookies
The First Part will show you how to colorize the Rookie-Marks.
The Second Function calculates an overall value based on the scouting-marks
Sorry, I have no web-space to post a file!
Create an Excel-table like this:
Visits
Name
Forename
Pos

FG
3PT
FT
Ins.Scr
Dunk
Steal
BlockO.Reb
D.Reb
Pass
O.Aware
D.Aware
Dribble
Quick
Speed
Jump
Strgth
Stamina
Hardiness

Overall
Age
Potential
Projected
PDD
Height
Weight

(in one line oc...)
Visits;Name;Forename;Pos;FG;3PT;FT;Ins.Scr;Dunk;Steal;Block;O.Reb;
D.Reb;Pass;O.Aware;D.Aware;Dribble;Quick;Speed;Jump;Strgth;Stamina;
Hardiness;Overall;Age;Potential;Projected;PDD;Height;Weight

press [alt]-F11 to start the vba-editor and DoubleClick "Table1" or whatever...
Code: Select all
Private Sub Scorecolors()
Dim RaB As Range, RaZ As Range
Set RaB = Application.Selection
For Each RaZ In RaB
    If Not Intersect(RaZ, RaB) Is Nothing Then
        Select Case RaZ.Value
            Case "A+"
                RaZ.Interior.Color = RGB(0, 255, 0)
            Case "A"
                RaZ.Interior.Color = RGB(0, 255, 0)
            Case "A-"
                RaZ.Interior.Color = RGB(0, 255, 0)
            Case "B+"
                RaZ.Interior.Color = RGB(0, 144, 125)
            Case "B"
                RaZ.Interior.Color = RGB(0, 144, 125)
            Case "B-"
                RaZ.Interior.Color = RGB(0, 144, 125)
            Case "C+"
                RaZ.Interior.Color = RGB(0, 48, 225)
            Case "C"
                RaZ.Interior.Color = RGB(0, 48, 225)
            Case "C-"
                RaZ.Interior.Color = RGB(0, 48, 225)
            Case "D+"
                RaZ.Interior.Color = RGB(98, 0, 184)
            Case "D"
                RaZ.Interior.Color = RGB(98, 0, 184)
            Case "D-"
                RaZ.Interior.Color = RGB(98, 0, 184)
            Case "E+"
                RaZ.Interior.Color = RGB(255, 0, 0)
            Case "E"
                RaZ.Interior.Color = RGB(255, 0, 0)
            Case "E-"
                RaZ.Interior.Color = RGB(255, 0, 0)
            Case Else
                RaZ.Interior.Color = RGB(255, 255, 255)
        End Select
    End If
Next RaZ
Set RaB = Nothing
End Sub

...and paste it there

now range FG - Hardiness on your excel-table and press run on the Scorecolors()-Function.
............


Next: the Overall-Function
Zelle = cell
Bereich = range
Example:
=CalcOverall(E2:W2)

Code: Select all
Function CalcOverall(Bereich As Range)
    tmp = 0
    For Each Zelle In Bereich.Cells
        Select Case Zelle.Value
            Case "A+"
                tmp = tmp + 15
            Case "A"
                tmp = tmp + 14
            Case "A-"
                tmp = tmp + 13
            Case "B+"
                tmp = tmp + 12
            Case "B"
                tmp = tmp + 11
            Case "B-"
                tmp = tmp + 10
            Case "C+"
                tmp = tmp + 9
            Case "C"
                tmp = tmp + 8
            Case "C-"
                tmp = tmp + 7
            Case "D+"
                tmp = tmp + 6
            Case "D"
                tmp = tmp + 5
            Case "D-"
                tmp = tmp + 4
            Case "E+"
                tmp = tmp + 3
            Case "E"
                tmp = tmp + 2
            Case "E-"
                tmp = tmp + 1
        End Select
    Next Zelle
    CalcOverall = tmp
End Function


have a nice day
aphexZero
 
Posts: 2
Joined: Thu Mar 31, 2005 9:45 am

Postby [lob]-Shy on Thu Mar 31, 2005 3:07 pm

no matter how many times i look at it i still cant figure out exactly what the purpose of this is, so im just gonna shut up now
ImageI LEAVE 99.97% OF MY VIEWERS SPEECHLESS :D
User avatar
[lob]-Shy
 
Posts: 1452
Joined: Mon Feb 23, 2004 10:51 am
Location: Mission Beach, CA

Postby debiler on Fri Apr 01, 2005 12:29 am

Cool! :D I'm gonna try it as soon as I have the time. Oh, and by the way: Nochn Deutscher hier? Freut mich. :)
User avatar
debiler
 
Posts: 1016
Joined: Wed Nov 13, 2002 8:35 am
Location: Stuttgart, Germany

Postby Null17 on Fri Apr 01, 2005 1:03 am

eh? what the hell is this for? i don't get it...
Null17
 
Posts: 4543
Joined: Thu Jan 29, 2004 6:55 pm
Location: Philippines

Postby osamaalqasim04 on Fri Apr 01, 2005 4:54 am

same - i dont understand
osamaalqasim04
 
Posts: 46
Joined: Mon Aug 09, 2004 6:26 pm

Postby quietb05 on Fri Apr 01, 2005 5:21 am

is this japanese :?:
User avatar
quietb05
 
Posts: 5
Joined: Sun Mar 20, 2005 12:18 pm

Postby LegoTP on Fri Apr 01, 2005 6:52 am

Yep, me too... give us a better explication of that. :wink:
Image
Thanks to : c0nr4d for the sig
User avatar
LegoTP
 
Posts: 2013
Joined: Wed Apr 28, 2004 8:15 pm
Location: France

Re: Scouting - Excel-Sheet

Postby drummond on Fri Apr 01, 2005 8:10 pm

aphexZero wrote:This is about how i get an overview on my rookies
The First Part will show you how to colorize the Rookie-Marks.
The Second Function calculates an overall value based on the scouting-marks
Sorry, I have no web-space to post a file!
Create an Excel-table like this:


man, I've never thought of making this!

This will be useful.
User avatar
drummond
 
Posts: 123
Joined: Fri Mar 21, 2003 12:05 pm
Location: South Korea

Postby aphexZero on Sat Apr 09, 2005 7:24 am

I know this is looking weird.
The meaning was to have an colored overview on who you are scouting and what value "he" has.
Actually i don't know much about this game, but i try to do my best to understand how a good team could develop.
Since Players-Value is randomly calculated i thought it was a good idea...

Yes, Ich bin ein Deutscher!
aphexZero
 
Posts: 2
Joined: Thu Mar 31, 2005 9:45 am

Postby EZJ on Sat Apr 09, 2005 8:01 am

DEUTSCHLAAAAAAAAAAAAAAND
User avatar
EZJ
 
Posts: 158
Joined: Wed Feb 12, 2003 7:40 pm
Location: Frankfurt, Germany


Return to NBA Live 2005

Who is online

Users browsing this forum: No registered users and 0 guests