Jump to content

[RESOLVIDO]Veículo para uma Determinada Skin


Recommended Posts

1 Bug Quando qualquer jogador cria um veículo esse some mesmo n sendo o veículo da policia !

addEventHandler("onVehicleEnter",root, 
function(Player,seat) 
if(getElementModel(source)==596 or 598) then 
local skin = getElementModel(Player) 
if(skin~=287 or 286 or 285) then 
cancelEvent() 
destroyElement(source) 
outputChatBox("Você Não é da Força Nacional de Segurança para Criar este Veículo",thePlayer) 
end 
end 
end) 

Link to comment
Não Entendi ;(

Você não pode checar dessa forma:

if ( getElementModel(source) == 596 or 598 ) then 

Porque o script vai checar se getElementModel(source) é igual a 596 até ai tudo bem, O problema é o or, Você teria que usar getElementModel novamente se não o script continua já que 598 não é um valor negativo (e existe).

addEventHandler("onVehicleEnter",root, 
    function( Player,seat ) 
        if ( getElementModel(source) == 596 or getElementModel(source) == 598 ) then 
            local skin = getElementModel(Player) 
            if( skin ~= 287 and skin ~= 286 and skin ~= 285 ) then 
                cancelEvent() 
                destroyElement(source) 
                outputChatBox("Você Não é da Força Nacional de Segurança para Criar este Veículo",thePlayer) 
            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...