Jump to content

Recommended Posts

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 by #DeltaSCR
Link to comment
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
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

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...