Jaga Posted May 7, 2019 Share Posted May 7, 2019 Quais sao as funçoes e como eu posso começar a fazer o script de algemar e desalgemar? Com setPedAnimation e outras funçoes Link to comment
#DeltaSCR Posted May 7, 2019 Share Posted May 7, 2019 (edited) Olá @Kahinan, você pode usar o exemplo a seguir como base: function algemar(thePlayer, cmd, playerName) if not playerName then --// SE NÃO FOI DECLARADO O NOME DO PLAYER, ENTÃO: return outputChatBox("Faltaram parâmetros") --// RETORNA UMA MENSAGEM PARA O JOGADOR INFORMANDO QUE FALTARAM PARÂMETROS. end local playerAccount = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup("user."..playerAccount, aclGetGroup("ComandosPolicia")) then --// VERIFICANDO SE O PLAYER QUE DEU O COMANDO ESTÁ NA ACL POLICIAL. local suspeitoName = getPlayerFromPartialName(player) else --// SENÃO outputChatBox("Você não é um policial") end end addCommandHandler("a", algemar) Edited May 7, 2019 by #DeltaSCR Link to comment
DNL291 Posted May 8, 2019 Share Posted May 8, 2019 @Kahinan O campo de edição de pesquisa do fórum é um grande aliado: https://forum.multitheftauto.com/search/?q=algemar https://forum.multitheftauto.com/topic/115950-comando-por-id/https://forum.multitheftauto.com/topic/115779-algemar/ Lembre-se sempre de utilizá-lo Link to comment
Jonas^ Posted May 8, 2019 Share Posted May 8, 2019 On 07/05/2019 at 10:30, #DeltaSCR said: Olá @Kahinan, você pode usar o exemplo a seguir como base: function algemar(thePlayer, cmd, playerName) if not playerName then --// SE NÃO FOI DECLARADO O NOME DO PLAYER, ENTÃO: return outputChatBox("Faltaram parâmetros") --// RETORNA UMA MENSAGEM PARA O JOGADOR INFORMANDO QUE FALTARAM PARÂMETROS. end local playerAccount = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup("user."..playerAccount, aclGetGroup("ComandosPolicia")) then --// VERIFICANDO SE O PLAYER QUE DEU O COMANDO ESTÁ NA ACL POLICIAL. local suspeitoName = getPlayerFromPartialName(player) else --// SENÃO outputChatBox("Você não é um policial") end end addCommandHandler("a", algemar) Seu código tem problemas nas output's e tem argumentos errados, onde era pra ser thePlayer tem player de resto esta certo, e eu faria a verificação por ACL primeiro. Link to comment
#DeltaSCR Posted May 8, 2019 Share Posted May 8, 2019 3 minutes ago, Jonas^ said: Seu código tem problemas nas output's e tem argumentos errados, onde era pra ser thePlayer tem player de resto esta certo, e eu faria a verificação por ACL primeiro. Os outputs eu não declarei nem argumentos não, pois deixei mais como exemplo mesmo... Quanto ao elemento thePlayer nem tinha reparado, fiz meio na correria; Vlw pela correção men 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