-
Posts
438 -
Joined
-
Last visited
Everything posted by FraN-724
-
No puedo arrancar el programa de MTA
FraN-724 replied to Predeitor's topic in Ayuda relacionada al cliente/servidor
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. -
Te lo deje en la post anterior._. , te lo dejo nuevamente en el spoiler
-
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.
-
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.
-
Te sale mejor descargarte otro race y editarlo, y comprobar si viene eso de los sonidos PD: No agas doble post.
-
Ayudan bastante? para los que inician, claro, porque les dejan el script hecho, y lo ideal es aprender solo y por tus propios medios.
-
Plate lo sé, pero igual en esos tutoriales no salen todas la funciones y otras cosas.
-
https://wiki.multitheftauto.com/wiki/Cl ... _Functions https://wiki.multitheftauto.com/wiki/Se ... _Functions Ojalá te sirva, también puedes buscar los eventos, etc
-
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
-
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 )
-
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
-
Good map, congratulations.
-
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.
-
Perdón, no me di cuenta.
-
http://www.mediafire.com/?3y2x7atdnoylo4t Si anda, solo es cosa de que algunos no les toma el link ( aveces )
-
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)
-
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)
-
Hahahahahaha xddddd
-
Desde que empece a leer el 'Problema' que parece testamento, supuse que era TigreBlanco o como se llame
-
Jaja, creo que le hace mal ver peliculas de acción