Jump to content

then expected near =


xUltimate

Recommended Posts

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

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

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