xUltimate Posted October 24, 2010 Share Posted October 24, 2010 Cant find out what's wrong with this, can someone help me? addCommandHandler( "duty", function( player, commandName ) local faction = tonumber( faction ) local duty = { } if factions[ SFPD ] then if duty = false then duty[ player ] = true setPlayerNametagColor( player, 0, 0, 255 ) else if duty = true then duty[ player] = false setPlayerNametagColor( player, 255, 255, 255 ) end else if factions[ SFEMS ] then if duty = false then duty[ player ] = true setPlayerNametagColor( player, 255, 0, 0 ) else if duty = true then duty[ player] = false setPlayerNametagColor( player, 255, 255, 255 ) end end end, true ) Link to comment
Castillo Posted October 24, 2010 Share Posted October 24, 2010 dude... give us MORE information please i'm lazy to find the error. (i mean what line u gentting this etc u know) edit: well i've checked it, try this, addCommandHandler( "duty", function( player, commandName ) local faction = tonumber( faction ) local duty = { } if factions[ SFPD ] then if duty == false then duty[ player ] = true setPlayerNametagColor( player, 0, 0, 255 ) else if duty == true then duty[ player] = false setPlayerNametagColor( player, 255, 255, 255 ) end end else if factions[ SFEMS ] then if duty == false then duty[ player ] = true setPlayerNametagColor( player, 255, 0, 0 ) else if duty == true then duty[ player] = false setPlayerNametagColor( player, 255, 255, 255 ) end end end end end ) Link to comment
dzek (varez) Posted October 24, 2010 Share Posted October 24, 2010 syntax errors can be easly spotted, you can see the line which you make a mistake, whats the problem to go to that line and fix it? 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