Jump to content

Como mover una puerta con un solo comando


eldelahoz

Recommended Posts

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

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
---------------------------------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 :wink:

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...