Jump to content

Same color as team?


Jullul7000

Recommended Posts

Posted

When they spawn, set their nametag color to their team color.

onPlayerSpawn

getPlayerTeam 
getTeamColor 
setPlayerNametagColor 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Try to make it by yourself, then post the script if it doesn't work.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        -- Code here 
    end 
) 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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 
) 

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

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 
) 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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.

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

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...