Jump to content

Ajuda addCommandHandler


Recommended Posts

Posted
function start (thePlayer,commandName, cmd)
if commandName == "start" then
	cmd = "test"
	 if cmd then
		triggerClientEvent ( thePlayer, "onClientStart", thePlayer )
		else
		outputChatBox("Erro")
		end	
	end	
end
addCommandHandler("start",start)

é um comando com espaço, "/start test", mas não esta funcionando, alguém pode me ajudar?

Posted

'start' é um comando usado pelo resource admin, tente usando outro nome:

addCommandHandler( "iniciar",
	function (thePlayer, commandName, cmd)
		if not (cmd) then return end;
		if cmd == "teste" then
			triggerClientEvent ( thePlayer, "onClientStart", thePlayer )
		else
			outputChatBox("Erro")
		end
	end
)

 

  • Like 1

Please do not PM me with scripting related question nor support, use the forums instead.

Posted
function start(commandName, cmd)
	if cmd then
		if cmd == "comandoTWO" then
			--code
		else
			outputChatBox("Erro!")
		end
	end
end
addCommandHandler("comando" ,start)

 

  • Moderators
Posted (edited)
15 hours ago, Pedro861 said:

function start(commandName, cmd)
	if cmd then
		if cmd == "comandoTWO" then
			--code
		else
			outputChatBox("Erro!")
		end
	end
end
addCommandHandler("comando" ,start)

 

Assim funciona.

Edited by Lord Henry

Eu te ajudei ou achou meu comentário útil? Não esqueça de deixar um Thanksspacer.png

Minhas contribuições para a comunidade: LordHenry - MTA Wiki Profile
Inscreva-se no meu canal do YouTube: Lord Henry - Entertainment
Discord Oficial do MTA: https://mtasa.com/discord
Blacklist e Whitelist de Scripters: Planilha

Por favor, não me envie mensagens privadas solicitando suporte. Crie um tópico no fórum em vez disso.

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