Jullul7000 Posted January 27, 2013 Share 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? Link to comment
Castillo Posted January 27, 2013 Share Posted January 27, 2013 When they spawn, set their nametag color to their team color. onPlayerSpawn getPlayerTeam getTeamColor setPlayerNametagColor Link to comment
Jullul7000 Posted January 27, 2013 Author Share 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. Link to comment
Castillo Posted January 27, 2013 Share Posted January 27, 2013 Try to make it by yourself, then post the script if it doesn't work. Link to comment
Jullul7000 Posted January 27, 2013 Author Share Posted January 27, 2013 Can you make a little begin? I only dont know how to begin the script. Link to comment
Castillo Posted January 27, 2013 Share Posted January 27, 2013 addEventHandler ( "onPlayerSpawn", root, function ( ) -- Code here end ) Link to comment
Jullul7000 Posted January 27, 2013 Author Share 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?? Link to comment
Lloyd Logan Posted January 27, 2013 Share 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 ) Link to comment
Castillo Posted January 27, 2013 Share 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 ) Link to comment
Lloyd Logan Posted January 27, 2013 Share 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. Link to comment
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