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 San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
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. San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
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 ) San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
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 ) 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!
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 ) San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
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. 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!
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