Jullul7000 Posted January 27, 2013 Posted January 27, 2013 Any know how to make this?: The members of the teams have the same color as the team. I want that too but how?
Castillo Posted January 27, 2013 Posted January 27, 2013 When they spawn, set their nametag color to their team color. onPlayerSpawn getPlayerTeam getTeamColor setPlayerNametagColor
Jullul7000 Posted January 27, 2013 Author Posted January 27, 2013 When they spawn, set their nametag color to their team color.onPlayerSpawn getPlayerTeam getTeamColor setPlayerNametagColor Can you help me? IDK how.
Castillo Posted January 27, 2013 Posted January 27, 2013 Try to make it by yourself, then post the script if it doesn't work.
Jullul7000 Posted January 27, 2013 Author Posted January 27, 2013 Can you make a little begin? I only dont know how to begin the script.
Castillo Posted January 27, 2013 Posted January 27, 2013 addEventHandler ( "onPlayerSpawn", root, function ( ) -- Code here end )
Jullul7000 Posted January 27, 2013 Author Posted January 27, 2013 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??
Lloyd Logan Posted January 27, 2013 Posted January 27, 2013 addEventHandler ( "onPlayerSpawn", root, function ( ) local team = getPlayerTeam ( thePlayer ) if (team) then local r, g, b = getTeamColor ( team ) setPlayerNametagColor ( thePlayer, r, g, b ) end )
Castillo Posted January 27, 2013 Posted January 27, 2013 '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 )
Lloyd Logan Posted January 27, 2013 Posted January 27, 2013 '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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now