Leinad Raiz Posted November 18, 2021 Share Posted November 18, 2021 Eu tenho um script de telefone dai quando uma pessoa chama um mecanico o script indentifica quais as pessoas que estão na acl mecanico para notificalos que alguem precisa de mecanico so que ele utiliza uma ( Acl ) para indentificar e eu tenho um script de agencia que ele usa a getplayerelement então dai eu queria saber como faço para substituir o acl por elemento: Quote elseif type == "mecanico" then outputChatBox("#00BFFFVocê chamou o mecânico, aguarde", client, 255, 255, 255, true) for _, player in ipairs(getElementsByType("player")) do if isPlayerInACL(player, (Grupo2)) then outputChatBox(getPlayerName(client).." precisa de um mecânico em "..city, player, 255, 255, 255, true) displayServerMessage(player, removeHex(getPlayerName(client)).." precisa de um mecânico em "..city, "warning") blip[client] = createBlipAttachedTo(client, 27) setElementVisibleTo(blip[client], root, false) setElementVisibleTo(blip[client], player, true) timer[client] = setTimer(function(b) if isElement(b) then destroyElement(b) end end, 120000, 1, blip[client]) end end Aquele e o mecanico este aqui e o script da agencia quando voce pega o emprego: function MecanicoAirNew () local Level = getElementData ( source, "Level" ) or 0 if Level >= 0 then TudoInvisivel () setElementVisibleTo ( Mecanico, source, true ) setElementData ( source, "AirNew>Encaminhamento", "Mecanico" ) outputChatBox ( "Você foi aceito no Emprego de Mecânico", source, 255, 255, 255, true ) outputChatBox ( "Para Iniciar os Serviços siga o Checkpoint Vermelho em seu Radar", source, 255, 255, 255, true ) setElementData ( source, "Emprego", false ) end end addEvent( "Encaminhar>Mecanico", true ) addEventHandler( "Encaminhar>Mecanico", getRootElement(), MecanicoAirNew ) Link to comment
Administrators Tut Posted November 18, 2021 Administrators Share Posted November 18, 2021 Moving this into the Programacao em Lua section - we expect all posts in the Scripting section to be written in English Link to comment
Doongogar Posted November 25, 2021 Share Posted November 25, 2021 On 18/11/2021 at 15:20, Leinad Raiz said: Eu tenho um script de telefone dai quando uma pessoa chama um mecanico o script indentifica quais as pessoas que estão na acl mecanico para notificalos que alguem precisa de mecanico so que ele utiliza uma ( Acl ) para indentificar e eu tenho um script de agencia que ele usa a getplayerelement então dai eu queria saber como faço para substituir o acl por elemento: marque a linguagem lua quando for acrescentar um codigo 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