Jump to content

[AJUDA] - Como arrumar?


Recommended Posts

Como arrumar esse erro quando eu crio o veículo (598) que aparentemente é o carro da BOPE ele consegue andar mais quando sai ele não entra mais,está tudo certo,mais queria saber como arrumar para que ele não crie o carro ja dentro dele,queria que ele fosse pra fora e já fosse alertado que é só para a BOPE. Queria sem mexer no freeroam.

function enterVehicle(player, seat, jacked) 
    local account = getPlayerAccount(player) 
    if (not account or isGuestAccount(account)) then return end 
    local accountName = getAccountName(account) 
    if (getElementModel(source) == 598) and (not isObjectInACLGroup("user.".. accountName,aclGetGroup("BOPE"))) then 
        setVehicleLocked(source, true) 
        outputChatBox("#000000[#FF0000ERRO#000000] #FF0000Somente a BOPE pode entrar neste veículo.",player, 0, 0, 0, true) 
    else 
        setVehicleLocked(source, false) 
    end 
end 
addEventHandler("onVehicleStartEnter",root,enterVehicle) 

Link to comment

Não entendi muito bem qual é o problema, mais tente isso:

addEventHandler ( "onVehicleStartEnter", root, 
function ( player ) 
    if getElementModel ( source ) == 598 then 
        if not isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( thePlayer ) ), aclGetGroup ( "BOPE" ) ) then 
            cancelEvent() 
            outputChatBox("#000000[#FF0000ERRO#000000] #FF0000Somente a BOPE pode entrar neste veículo.",player, 0, 0, 0, true) 
        end 
    end 
end ) 

Link to comment

Voce quer que quem crie o carro pelo f1 e n seja do bope seja ejetado ?:

addEventHandler ( "onVehicleEnter", root, 
function ( player ) 
    if getElementModel ( source ) == 598 then 
        if not isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( player ) ), aclGetGroup ( "BOPE" ) ) then 
            removePedFromVehicle( player ); 
            outputChatBox("#000000[#FF0000ERRO#000000] #FF0000Somente a BOPE pode entrar neste veículo.",player, 0, 0, 0, true); 
        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...