KeeRp Posted March 1, 2013 Share Posted March 1, 2013 Fala galera. Eu fiz o seguinte, coloquei isso daqui: function createVehicleForPlayer(thePlayer, command, vehicleModel) local x,y,z = getElementPosition(thePlayer) x = x + 3 local createdVehicle = createVehicle(tonumber(vehicleModel),x,y,z) if (createdVehicle == false) then outputChatBox("Falhou ao criar veiculo",thePlayer) end if (createdVehicle == true) then outputChatBox("Veiculo criado com sucesso",thePlayer) end end addCommandHandler("criarveiculo", createVehicleForPlayer) O problema é o seguinte, quando eu digito /criarveiculo e um id que não existe, aparece certinho "Falhou ao criar veiculo" Mas quando eu digito um ID certo, o carro aparece mais o "Veiculo criado com sucesso" não aparece. Será que devo colocar essa parte: local createdVehicle = createVehicle(tonumber(vehicleModel),x,y,z) em cima do: if (createdVehicle == true) then outputChatBox("Veiculo criado com sucesso",thePlayer) ?? Link to comment
Vision Posted March 1, 2013 Share Posted March 1, 2013 Tenta esse aqui function createVehicleForPlayer(thePlayer, command, vehicleModel) local x,y,z = getElementPosition(thePlayer) x = x + 3 local createdVehicle = createVehicle(tonumber(vehicleModel),x,y,z) if (createdVehicle) then outputChatBox("Veiculo criado com sucesso",thePlayer) else outputChatBox("Falhou ao criar veiculo",thePlayer) end end addCommandHandler("criarveiculo", createVehicleForPlayer) Link to comment
KeeRp Posted March 1, 2013 Author Share Posted March 1, 2013 @Castro Olá, desculpa a demora, irei testar agora, se funcionar vou dar um EDIT aqui! @EDIT: Mano você é fera!! Funcionou perfeito!! Se você também puder resolver uma dúvida que é ao ínves de colocar (thePlayer) queria colocar para todos jogadores.. Nessa parte obvio! outputChatBox("Veiculo criado com sucesso",thePlayer) Aí poderia ficar assim "Nome do jogador criou um veículo com sucesso" Vlw Link to comment
Vision Posted March 1, 2013 Share Posted March 1, 2013 outputChatBox(getPlayerName(thePlayer).." criou um veículo com sucesso",root) Assim? 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