Jump to content

FraN-724

Members
  • Posts

    438
  • Joined

  • Last visited

Everything posted by FraN-724

  1. Intenta con instalar gta en otra carpeta y luego instala mta en otra, creo que así funciona, bueno, así me funciono ami, no sé si a todos les funciona.
  2. Te lo deje en la post anterior._. , te lo dejo nuevamente en el spoiler
  3. FraN-724

    ayuda

    Tal ves tengas razón, pero por lo mismo te digo, no sé aprende casi nada ya que pega y copia o solo copia, pero bueno, no sigamos discutiendo, cada uno tiene su método de aprender.
  4. Hay muchos races, unos viene mas editados y otros no, prueba con uno de esos PD: en el buscador pon race y de tipo gamemode. Edit: Ahora mirando bien la post atras, ya sé cual es tu error, copia todo el código que pondré y remplazalo por todo tu race client.
  5. Te sale mejor descargarte otro race y editarlo, y comprobar si viene eso de los sonidos PD: No agas doble post.
  6. FraN-724

    ayuda

    Ayudan bastante? para los que inician, claro, porque les dejan el script hecho, y lo ideal es aprender solo y por tus propios medios.
  7. FraN-724

    ayuda

    Plate lo sé, pero igual en esos tutoriales no salen todas la funciones y otras cosas.
  8. FraN-724

    ayuda

    https://wiki.multitheftauto.com/wiki/Cl ... _Functions https://wiki.multitheftauto.com/wiki/Se ... _Functions Ojalá te sirva, también puedes buscar los eventos, etc
  9. Intenta esto ahora objeto = createObject ( 16773, -1163.8000488281, -952.59997558594, 132.19999694824, 0, 0, 0 ) x,y,z = getElementPosition (objeto) Zona = createColSphere ( x, y, z, 15 ) function funcion (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Clan" then moveObject ( objeto, 800, -1179, -952.59997558594, 132.19999694824 ) end end end function funcion2 (hitElement) local skin = getPlayerSkin ( hitElement ) if skin == 100 then moveObject ( objeto, 800, -1163.8000488281, -952.59997558594, 132.19999694824 ) end end addEventHandler ( "onColShapeHit", Zona, funcion ) addEventHandler ( "onColShapeLeave", Zona, funcion2 ) ------------------------------------------------------------------------------------------------------------------------------------------------- objeto1 = createObject ( 16773, -1149.1999511719, -952.59997558594, 132.19999694824, 0, 0, 0 ) x,y,z = getElementPosition (objeto1) Zona1 = createColSphere ( x, y, z, 15 ) function funcion3 (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Clan" then moveObject ( objeto1, 800, -1136, -952.59997558594, 132.19999694824 ) end end end function funcion4 (hitElement) local skin = getPlayerSkin ( hitElement ) if skin == 100 then moveObject ( objeto1, 800, -1149.1999511719, -952.59997558594, 132.19999694824 ) end end addEventHandler ( "onColShapeHit", Zona, funcion3 ) addEventHandler ( "onColShapeLeave", Zona1, funcion4 ) pd: lo otro no lo había testeado
  10. Intenta así. objeto = createObject ( 16773, -1163.8000488281, -952.59997558594, 132.19999694824, 0, 0, 0 ) x,y,z = getElementPosition (objeto) Zona = createColSphere ( x, y, z, 15 ) function funcion (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Clan" then moveObject ( objeto, 800, -1179, -952.59997558594, 132.19999694824 ) end end end addEventHandler ( "onColShapeHit", Zona, funcion ) function funcion2 (hitElement) local skin = getPlayerSkin ( hitElement ) if skin == 100 then moveObject ( objeto, 800, -1163.8000488281, -952.59997558594, 132.19999694824 ) end end addEventHandler ( "onColShapeLeave", Zona, funcion2 ) ------------------------------------------------------------------------------------------------------------------------------------------------- objeto1 = createObject ( 16773, -1149.1999511719, -952.59997558594, 132.19999694824, 0, 0, 0 ) x,y,z = getElementPosition (objeto1) Zona1 = createColSphere ( x, y, z, 15 ) function funcion3 (hitElement) if getElementType( hitElement ) == "player" then if getTeamName( getPlayerTeam( hitElement ) ) == "Clan" then moveObject ( objeto1, 800, -1136, -952.59997558594, 132.19999694824 ) end end end addEventHandler ( "onColShapeHit", Zona, funcion3 ) function funcion4 (hitElement) local skin = getPlayerSkin ( hitElement ) if skin == 100 then moveObject ( objeto1, 800, -1149.1999511719, -952.59997558594, 132.19999694824 ) end end addEventHandler ( "onColShapeLeave", Zona1, funcion4 )
  11. No creo que sea con eso, ya que el humo quizás lo quiera incorporar a un vehiculo y poderle cambiar el color, quiere hacer algo parecido al Nitrous Mod de Xlatino, un amigo esta haciendo algo parecido a eso, pero utiliza: fxAddGlass
  12. FraN-724

    Resoliciones

    guiGetScreenSize
  13. Alex, es que no se trata de eso, esto es que con el comando giveall le des arma a todos y no se estén dando la paja de dar a través del panel admin.
  14. Perdón, no me di cuenta.
  15. http://www.mediafire.com/?3y2x7atdnoylo4t Si anda, solo es cosa de que algunos no les toma el link ( aveces )
  16. Intena probando con el que uso yo function repair(source) if isPedInVehicle(source) then if ( getPlayerMoney (source) >= 5000 ) then takePlayerMoney(source, 5000) fixVehicle(getPedOccupiedVehicle(source)) outputChatBox("Has Comprado Repair por $5000.", source, 0, 255, 0, true) else outputChatBox("No tienes suficiente dinero para realizar esta acción.", source, 255, 0, 0, true) end else outputChatBox("No estas en un vehiculo.", source, 255, 0, 0, true) end end addCommandHandler('fixcar', repair)
  17. FraN-724

    Ayuda

    Intenta así function Chat(source) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) outputChatBox('', source, 255, 0, 0, true) end addCommandHandler('msj', Chat)
  18. FraN-724

    Ayuda

    De nada, ya sabes, cualquier duda, lo publicas aquí.
  19. FraN-724

    Ayuda

    addCommandHandler setTimer outputChatBox
  20. Desde que empece a leer el 'Problema' que parece testamento, supuse que era TigreBlanco o como se llame
  21. Jaja, creo que le hace mal ver peliculas de acción
×
×
  • Create New...