Jump to content

Same color as team?


Jullul7000

Recommended Posts

Posted

thanks

EDIT:

addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        team getPlayerTeam ( player thePlayer ) 
        getTeamColor ( team theTeam ) 
        setPlayerNametagColor ( player thePlayer, false ) 
    end 
) 

I think i need to start so??

Posted
addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        local team = getPlayerTeam ( thePlayer ) 
        if (team) then 
        local r, g, b =  getTeamColor ( team ) 
        setPlayerNametagColor ( thePlayer, r, g, b ) 
    end 
) 

Posted

'thePlayer' is not defined, and you got a missing 'end'.

addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        local team = getPlayerTeam ( source ) 
        if ( team ) then 
            local r, g, b =  getTeamColor ( team ) 
            setPlayerNametagColor ( source, r, g, b ) 
        end 
    end 
) 

Posted
'thePlayer' is not defined, and you got a missing 'end'.
addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        local team = getPlayerTeam ( source ) 
        if ( team ) then 
            local r, g, b =  getTeamColor ( team ) 
            setPlayerNametagColor ( source, r, g, b ) 
        end 
    end 
) 

I'm on my phone atm so I don't really know what I am doing.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...