Jump to content

Boton Panel > Función de "Job"


MBAUser

Recommended Posts

 

Mi problema es que obviamente no se scriptear bien jaja, pero tengo la idea de como hacerlo, es a partir del panel, (AL PULSAR > "ABOTON1" en el panel(Ventana2) empezar un recorrido, y hacer que se cree 1 marker, y asi apenas llega, que espere 3 segundos, se destruya el marker, y se cree 1 nuevo en otra parada y asi. Al llegar que le de dinero, no veo que sea algo dificil de hacer, pero intente de todo, por eso recurro a la comunidad... Espero que no sea mucha molestia, gracias por leer! :)


-----------------------------------------------------
-- Esto seria la parte del panel para que empieze a trabajar osea "Aboton1"
-----------------------------------------------------

addEventHandler("onClientGUIClick", guiRoot,    
	function()
		local getGui = guiGetVisible(Ventana2)
		if source == Aboton13 then	
			if getGui then 
				guiSetVisible(Ventana2, false)
				showCursor(false) 
			end
		elseif source == Aboton1 then                --Para empezar el trabajo
			if getGui then 
				guiSetVisible(Ventana2, false) 
		        showCursor(false)
				setElementVisibleTo ( Linea54terminal, root, false )
			    end
			end
		end
)   


Linea54terminal = createMarker(2482.2924804688, 1917.4254150391, 9.768750190735,"cylinder",2,0,218,255)
setElementVisibleTo ( Linea54terminal, root, false )

veh = {}
function Linea54A (source)                                           --Empieza el trabajo haciendo click en Aboton1<<
	if isElementWithinMarker(source, Linea54terminal)      --Cuando toca con el Marker de la terminal la cosa es q empieze e lrecorrido
		then if veh[source] and isElement( veh[source] )  --Con determinado vehiculo del team 
			then destroyElement ( Linea54terminal )       --Se destruye el marker de terminal
		    Linea54Parada1 = createMarker(2482.2924804688, 1917.4254150391, 9.768750190735,"cylinder",2,0,218,255)
end
 
end
end
addEventHandler( "onMarkerHit", Linea54terminal, incio ) 

-------------------------------

 

Link to comment

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