eldelahoz Posted January 7, 2013 Share Posted January 7, 2013 Hola quisiera saber como puedo hacer para que una puerta se suba y se baje con un solo comando ¡Saludos! P.D: Decirme el codigo ya e intentando 2 codigos pero no me funcionaron Link to comment
eldelahoz Posted January 7, 2013 Author Share Posted January 7, 2013 Has hecho como 5 temas sobre lo mismo de las puertas,... muchos usuarios te han puesto muchos ejemplos, incluso yo te puse uno,... si pusieras más atención a todos los scripts de ejemplo que te han puesto, entonces, tu ya podrías hacerlo. Ya lo hice gracias alguien ya me ayudo pero tu sabes como poner un mensaje a la gente que no es del clan y intenten entrar en la puerta automatica? Link to comment
FraN-724 Posted January 7, 2013 Share Posted January 7, 2013 Tambien podrias guiarte por este video: Link to comment
eldelahoz Posted January 7, 2013 Author Share Posted January 7, 2013 Asi lo tengo y no meda objeto = createObject ( 980, 773.5, 836.79998779297, 7.6999998092651, 0, 0, -90 ) x,y,z = getElementPosition (objeto) Zona = createColSphere ( x, y, z, 7.5 ) function funcion (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Nombre del Clan" then moveObject ( objeto, 5000, 773.5, 836.79998779297, -1.6999998092651 ) end else outputChatBox ( "No Heres Del Clan Largate", hitElement, 0, 255, 0 ) end end addEventHandler ( "onColShapeHit", Zona, funcion ) function funcion2 (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Nombre del Clan" then moveObject ( objeto, 2000, 773.5, 836.79998779297, 7.6999998092651 ) end end end addEventHandler ( "onColShapeLeave", Zona, funcion2 ) Link to comment
Renkon Posted January 7, 2013 Share Posted January 7, 2013 y pues muestranos porque no funciona, errores o algo, no esperes que hagamos el trabajo por ti, te ayudamos pero no lo hacmos. Vives pidiendo cosas, pon empeño en aprender tu tmb Link to comment
eldelahoz Posted January 7, 2013 Author Share Posted January 7, 2013 Pero es que no aparece el mensaje y lo tengo como deveria estar ps creo yo Link to comment
FraN-724 Posted January 7, 2013 Share Posted January 7, 2013 ---------------------------------Entry----------------------------------------------- objeto = createObject ( 980, 773.5, 836.79998779297, 7.6999998092651, 0, 0, -90 ) x,y,z = getElementPosition (objeto) Zona = createColSphere ( x, y, z, 7.5 ) function funcion (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Nombre del Clan" then moveObject ( objeto, 5000, 773.5, 836.79998779297, -1.6999998092651 ) else outputChatBox ( "No Heres Del Clan Largate", hitElement, 0, 255, 0 ) end end end addEventHandler ( "onColShapeHit", Zona, funcion ) function funcion2 (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Nombre del Clan" then moveObject ( objeto, 2000, 773.5, 836.79998779297, 7.6999998092651, 0, 0, 0 ) end end end addEventHandler ( "onColShapeLeave", Zona, funcion2 ) Hay esta Men Link to comment
Recommended Posts