BaseadoSWD Posted April 26, 2015 Share Posted April 26, 2015 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
n3wage Posted April 27, 2015 Share Posted April 27, 2015 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
BaseadoSWD Posted April 27, 2015 Author Share Posted April 27, 2015 Estou a dizer que quando a pessoa for criar o veículo 598,seja chutada para fora dele e apareça a mensagem que só bope entra no veículo Link to comment
DNL291 Posted April 27, 2015 Share Posted April 27, 2015 Acho que você vai ter que modificar o freeroam. Link to comment
n3wage Posted April 27, 2015 Share Posted April 27, 2015 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
BaseadoSWD Posted April 27, 2015 Author Share Posted April 27, 2015 Obrigado consegui . 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