KayqueXL Posted August 22, 2022 Share Posted August 22, 2022 function toggleInvisibility(thePlayer) if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(thePlayer)), aclGetGroup ("Staff")) then local enabled = getElementData(Player, "ID") if (enabled == true) then setElementAlpha(Player, 0) setElementData(Player, "reconx", false) outputChatBox (" -> Escondeu O ID", thePlayer) setElementData(Player, "invisible", false) elseif (enabled == false or enabled == nil) then setElementAlpha(Player, 0) setElementData(Player, "reconx", true) outputChatBox (" -> Mostrou O ID", thePlayer) setElementData(Player, "invisible", true) else end outputChatBox ("Acesso negado", thePlayer) else end end addCommandHandler("IDV", toggleInvisibility) Link to comment
Vampire Posted August 22, 2022 Share Posted August 22, 2022 Olá @KayqueXL, seja bem vindo! Movi seu tópico para a seção de Programação em Português do fórum para que você possa obter uma melhor assistência em seu idioma nativo. Lembre-se de sempre escrever em Inglês ao postar fora desta seção. 1 Link to comment
KayqueXL Posted August 25, 2022 Author Share Posted August 25, 2022 function toggleInvisibility(thePlayer) if isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(thePlayer)), aclGetGroup ("Staff")) then local enabled = getElementData(Player, "ID") if (enabled == true) then setElementAlpha(Player, 0) setElementData(Player, "reconx", false) outputChatBox (" -> Escondeu O ID", thePlayer) setElementData(Player, "invisible", false) elseif (enabled == false or enabled == nil) then setElementAlpha(Player, 0) setElementData(Player, "reconx", true) outputChatBox (" -> Mostrou O ID", thePlayer) setElementData(Player, "invisible", true) else end outputChatBox ("Acesso negado", thePlayer) else end end addCommandHandler("IDV", toggleInvisibility) Link to comment
DNL291 Posted August 25, 2022 Share Posted August 25, 2022 Você não está usando o elemento do jogador 'thePlayer', em vez disso, está Player que é um valor nulo. O código também parece ter problemas de lógica. Use o comando debugscript 3 sempre que tiver problemas e ao postar no fórum, cole seu código dentro da formatação correta no botão Code <> 1 1 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