Pedro Colto Posted May 27, 2017 Share Posted May 27, 2017 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? Link to comment
DNL291 Posted May 27, 2017 Share Posted May 27, 2017 '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 ) 1 Link to comment
Pedro861 Posted May 31, 2017 Share Posted May 31, 2017 function start(commandName, cmd) if cmd then if cmd == "comandoTWO" then --code else outputChatBox("Erro!") end end end addCommandHandler("comando" ,start) Link to comment
Other Languages Moderators Lord Henry Posted May 31, 2017 Other Languages Moderators Share Posted May 31, 2017 (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 May 31, 2017 by Lord Henry 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