Death Posted October 13, 2012 Share Posted October 13, 2012 me ajudem quero parar com os flods nos comandos de teleporte e um amigo meu esta tentando fazer esse script e não esta funcionando o que tem de errado nele? me ajudem por favor function teleport19(source) if getElementData(source,"cmdf") == 0 then local veiculo = getPedOccupiedVehicle(source) setElementPosition (veiculo, 1450.4266357422, 1337.4921875, 12.838579177856 ) setElementPosition (source, 1450.4266357422, 1337.4921875, 12.838579177856 ) outputChatBox ('#FFFF00[/stunt] #FFFFFF' .. getPlayerName(source) .. ' foi para a Arena Stunt !!!', getRootElement(), 255, 255, 255, true) setElementData(source,"cmdf", 1) setTimer(remover,20000,1,source) elseif getElementData(source,"cmdf") == 1 then outputChatBox ( "deu certo! (: ") end end addCommandHandler( "st", teleport19 ) addCommandHandler( "stunt", teleport19 ) function remover(source) setElementData(source,"cmdf",0) end Link to comment
Recommended Posts