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
Posted
function start(commandName, cmd)
	if cmd then
		if cmd == "comandoTWO" then
			--code
		else
			outputChatBox("Erro!")
		end
	end
end
addCommandHandler("comando" ,start)

 

  • Other Languages 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

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