NodZen Posted May 29, 2012 Share Posted May 29, 2012 Hola amigos de la comunidad . Tengo un proble/duda sobre mi script. Se trata de que cuando un player entra al server , le aparezca una imagen y que cuando aprieten la bingKEY se la cierre. Pero otro script que tengo (un login/register) no me deja cerrar esta ventana. El problema es que como puedo hacer para que esta imagen de desbanesca o se cierre sola a los 3 o 5 segundos se aparecerse.. Les dejo el guion y fijense si me pueden ayuda porque no tengo la minima idea de como acerlo . NOTA: Este es mi primer script... function showClientImage() myImage = guiCreateStaticImage( 0.0,0.0,1279.0,767.0, "images/image.png", true ) end addEventHandler( "onClientResourceStart", resourceRoot, showClientImage ) function hideClientImage() if isElement ( myImage ) then destroyElement ( myImage ) end end bindKey("space", "down", hideClientImage) Link to comment
Castillo Posted May 29, 2012 Share Posted May 29, 2012 function showClientImage() myImage = guiCreateStaticImage( 0.0,0.0,1279.0,767.0, "images/image.png", true ) setTimer ( destroyElement, 5000, 1, myImage ) end addEventHandler( "onClientResourceStart", resourceRoot, showClientImage ) Link to comment
NodZen Posted May 29, 2012 Author Share Posted May 29, 2012 function showClientImage() myImage = guiCreateStaticImage( 0.0,0.0,1279.0,767.0, "images/image.png", true ) setTimer ( destroyElement, 5000, 1, myImage ) end addEventHandler( "onClientResourceStart", resourceRoot, showClientImage ) Gracias Solid. Funciona a la perfeccion. Link to comment
Recommended Posts