-
Posts
222 -
Joined
-
Last visited
Everything posted by Chaz-CR
-
Que me reomendarian para hacer una zona en la que solo puedas matar peds y no a los otros players, que sea con radararea preferiblente!
-
What files do i have to transfer?
-
Hi Masters, i'd like to know if its possible to transfer a database from Linux to Windows or viceversa! Thanks!
-
Si tiene pero esa pagina web esta super bugueada, ni registrarme puedo, igual gracias!
-
Me alegro poder haberte ayudado con gusto
-
Intenta solo cambiando el local al español y dejando los elementData como estaban, no se mucho de DayZ pero quizas use ese elementData en alguna otra funcion!
-
simplemente me gustaria conocer de otras paginas que tengan esta funcion!
-
Me gustaria saber otras paginas para crear mis banners ya que solo conozco game-state.eu Gracias!
-
try to use onClientResourceStart and resourceRoot like: addEventHandler("onClientResourceStart",resourceRoot, bot)
-
Hi, im just asking here for some handlings, i already made the script but i dont know how to mix the handlings of my car to make a good modify, i'd like you guys tell me some variables of the handling to make a drift handling, drag handling, dirty handling, etc. If you can help me i'll preciate it!
-
postea el script en el que esta esa linea asi te podemos ayudar!
-
Bueno lo que quiero es que me cambie de camera matrix cada cierto tiempo y se vea en diferentes partes con las coordenadas que hice en una tabla. Aca lo que intente hacer. local tiempo = unpack ( camaras [ math.random ( #camaras ) ] ) function camaraChaz () fadeCamera(source, true, 5) setCameraMatrix(source,tiempo ) end setTimer(camaraChaz,5000,0)
-
More LABELS and less outputs, the capacity of win a turf by a team and no from the clan system of castillo, i tried to used it time ago but it still having some bugs!
-
Maybe a tune shop, but a tune shop that gives you different kinds of handling for your car whit a specific handling. Like Drift Handling, Drag Handling, Dirt Handling, City Handling, etc. Hope my idea will be helpful
-
vale gracias Castillo!
-
Bueno modifique un poco este script pero a la hora de darte el arma se pone la municion que te da el paquete y desaparece la que estaba antes. PD: La tabla tiene solo algunas armas. addEventHandler("onPickupHit",root, function ( player ) if ( source ~= bag ) then return end if ( isPedInVehicle( player ) ) then return end destroyElement( bag ) destroyElement( bl ) randomAmmo = math.random( 100, 300 ) arma = unpack(armas [ math.random (#armas) ] ) giveWeapon ( player, arma, randomAmmo, true ) outputChatBox("Encontraste una #007FFF" .. tostring(getWeaponNameFromID (arma)) .." con #007FFF".. tostring(randomAmmo) .." de municion.", player, 0, 250, 0, true) outputChatBox("["..getPlayerName(player).."] Ha encontrado el paquete | El siguiente paquete aparecera en unos minutos.", root, 0, 255, 0) setTimer( createBag, 90000, 1 ) end )
-
OMG @Vector very explained but i really needed the Function TAPL got me, anyways thanks a lot for explain me!
-
It will play the default sound of a ped when he is talking? i dont think so, i mean when you are near from a ped, an example CJ, he say something, i wanna now if i can play that sounds whit a script
-
I'd like to know if exists some function that plays the sound of the peds when they are talking, i mean if you have the GTA SA Full and you go to some ped, he will say something. hope you understand and can help me
-
i didn't know that, very helpful thanks!
-
lmao, k thanks for you respond!
-
Thanks Solid. Offtopic: Where can i contact you for something about a resource?
-
Hi well, i've been trying to change a command handler whit a timer but i couldn't. I'd like you guys help me cuz i dont know how to do this line works thanks! Here is the code! function saveAllVehiclesAlternative () local file = fileCreate( "vehicles.xml" ) local vs = 0 local prec = getTickCount() fileWrite( file, "\n" ) for k, i in ipairs ( getElementsByType( "vehicle" ) ) do if allVehicles[i] then local x, y, z = getElementPosition( i ) local ar, ag, ab, br, bg, bb, cr, cg, cb, dr, dg, db = getVehicleColor( i, true ) fileWrite( file, " \""..allVehicles[i].."\" model=\""..getElementModel( i ).."\" pos=\""..toJSON({x, y, z}).."\" color=\""..toJSON({ar, ag, ab, br, bg, bb, cr, cg, cb, dr, dg, db}).."\" paintjob=\""..getVehiclePaintjob(i).."\" upgrades=\""..toJSON( getVehicleUpgrades(i) ).."\" interior=\""..getElementInterior(i).."\" dimension=\""..getElementDimension(i).."\" /> \n" ) vs = vs + 1 end end fileWrite( file, " \n" ) fileClose( file ) outputDebugString( vs.." vehiculos guardados en "..getTickCount()-prec.." ms", 3 ) end addCommandHandler( "preguard", saveAllVehiclesAlternative )
