-
Posts
1,673 -
Joined
-
Last visited
-
Days Won
6
Everything posted by 0xCiBeR
-
Nice map
-
Con estas funciones: engineLoadTXD engineImportTXD engineLoadDFF engineReplaceModel
-
Maybe Radial Blur here: https://wiki.multitheftauto.com/wiki/Shader_examples
-
Maybe this: setPlayerBlurLevel Or use shaders.
-
--determine whether color change can be made with a command cmd = true --the command to use thecmd = "neon" function neon(plr,cmd,r,g,b,a) if not r then openGui(plr) return true end if tonumber(tostring(r)) == nil then r,g,b,a = getColorFromString(r) end if not a then a = 200 end veh = getPedOccupiedVehicle(plr) if veh and r and g and b then model = getElementModel(veh) if canHaveNeon(veh) then if haveNeon(veh) then setNeonColor(veh,tonumber(r),tonumber(g),tonumber(b)) end end end end if cmd then addCommandHandler(thecmd,neon) end function setNeonColor(veh,r,g,b) setElementData(veh,"neonlight",tostring(r)..","..tostring(g)..","..tostring(b)..","..tostring(a)) for i,mark in ipairs(getElementsByType("marker")) do local type = getMarkerType(mark) if type == "corona" then local data1 = getElementData(veh,"neonMarker1") local data2 = getElementData(veh,"neonMarker2") if data1 == mark or data2 == mark then setMarkerColor(mark,r,g,b,80) else addNeon(veh,true) end end end return true end function haveNeon(veh) local data = getElementData(veh,"haveneon") if data then return true else return false end end function addNeon(veh,state) if getElementType(veh) == "vehicle" then if state then setElementData(veh,"haveneon",true) x,y,z = getElementPosition(veh) -- local exist = nil for i,mark in ipairs(getElementsByType("marker")) do data = getElementData(veh,"neonMarker1") if data == mark then local exist = mark end end if not exist then local marker1 = createMarker(x,y,z,"corona",2,0,0,0,0) attachElements(marker1,veh,0,-1,-1.2) setElementData(veh,"neonMarker1",marker1) local marker2 = createMarker(x,y,z,"corona",2,0,0,0,0) attachElements(marker2,veh,0,1,-1.2) setElementData(veh,"neonMarker2",marker2) end -- return true else setElementData(veh,"haveneon",false) setElementData(veh,"neonlight","off!!!") -- for i,mark in ipairs(getElementsByType("marker")) do local type = getMarkerType(mark) if type == "corona" then local data1 = getElementData(veh,"neonMarker1") local data2 = getElementData(veh,"neonMarker2") if data1 == mark or data2 == mark then setMarkerColor(mark,0,0,0,0) end end end -- return true end else return false end end function canHaveNeon(veh) model = getElementModel(veh) if veh and getElementType(veh) == "vehicle" then x = mayHaveNeon(model) return x else return false end end function mayHaveNeon(model) if model ~= 592 and model ~= 511 and model ~= 584 and model ~= 512 and model ~= 593 and model ~= 417 and model ~= 487 and model ~= 553 and model ~= 488 and model ~= 563 and model ~= 476 and model ~= 519 and model ~= 460 and model ~= 469 and model ~= 513 and model ~= 472 and model ~= 473 and model ~= 493 and model ~= 595 and model ~= 484 and model ~= 430 and model ~= 453 and model ~= 452 and model ~= 446 and model ~= 454 and model ~= 403 and model ~= 514 and model ~= 443 and model ~= 515 and model ~= 455 and model ~= 406 and model ~= 486 and model ~= 578 and model ~= 532 and model ~= 524 and model ~= 498 and model ~= 609 and model ~= 568 and model ~= 457 and model ~= 508 and model ~= 571 and model ~= 539 and model ~= 606 and model ~= 607 and model ~= 485 and model and model ~= 581 and model ~= 509 and model ~= 481 and model ~= 462 and model ~= 521 and model ~= 463 and model ~= 510 and model ~= 522 and model ~= 461 and model ~= 448 and model ~= 468 and model ~= 586 and model ~= 485 and model ~= 552 and model ~= 431 and model ~= 438 and model ~= 437 and model ~= 574 and model ~= 525 and model ~= 408 and model ~= 416 and model ~= 433 and model ~= 427 and model ~= 490 and model ~= 528 and model ~= 407 and model ~= 544 and model ~= 523 and model ~= 470 and model ~= 596 and model ~= 597 and model ~= 598 and model ~= 599 and model ~= 432 and model ~= 601 and model ~= 428 and model ~= 499 and model ~= 449 and model ~= 537 and model ~= 538 and model ~= 570 and model ~= 569 and model ~= 590 and model ~= 441 and model ~= 464 and model ~= 501 and model ~= 465 and model ~= 564 and model ~= 594 then return true else return false end end function deactivateNeon(veh) if getElementType(veh) == "vehicle" then setElementData(veh,"neonlight","off!!!") for i,mark in ipairs(getElementsByType("marker")) do local type = getMarkerType(mark) if type == "corona" then local data1 = getElementData(veh,"neonMarker1") local data2 = getElementData(veh,"neonMarker2") if data1 == mark or data2 == mark then setMarkerColor(mark,0,0,0,0) end end end return true else return false end end function openGui(plr) local veh = getPedOccupiedVehicle(plr) if haveNeon(veh) then triggerClientEvent(plr,"openNeonGui",root) end end addEventHandler("onPlayerJoin",root,function() for i,veh in ipairs(getElementsByType("vehicle")) do data = getElementData(veh,"neonlight") setElementData(veh,"neonlight",data) end end) for i,veh in ipairs(getElementsByType("vehicle")) do deactivateNeon(veh) end addEvent("closeNeonGui",true) addEventHandler("closeNeonGui",root,function(r,g,b) local veh = getPedOccupiedVehicle(source) setNeonColor(veh,r,g,b) end)
-
Try setting the parent of the buttons to the static image.
-
Is the login window a dxDrawRectangle or similar?.. EDIT: You're using GIE? Just try interpolating the buttons.
-
Change that line to: local veh = getPedOccupiedVehicle(plr) Also change on line 168 to: local veh = getPedOccupiedVehicle(source)
-
Wrong section: viewforum.php?f=108
-
¡Ayuda! No me abre el mta
0xCiBeR replied to depato123's topic in Ayuda relacionada al cliente/servidor
Creo que el mismo respondió tu pregunta. -
¡Ayuda! No me abre el mta
0xCiBeR replied to depato123's topic in Ayuda relacionada al cliente/servidor
¿Te aparece algún error o sencillamente no hay reacción por parte de la aplicación? Dice que directamente no le abre el instalador ahora, es muy probable que un servicio no este funcionando, o simplemente se daño algo en el registro. Por eso dije lo de restaurar sistema que en muchos casos me salvo la vida a mi -
¡Ayuda! No me abre el mta
0xCiBeR replied to depato123's topic in Ayuda relacionada al cliente/servidor
Mhm por ahí sí, o no está funcionando algún servicio.. Instalaste algo últimamente? Proba restaurar sistema haber como te va.. -
Algun Host Bueno que se pague por rapipago o pago facil?
0xCiBeR replied to joaquifs's topic in Soluciones de hosting
Mi experiencia con el dueño de BBhosting no ha sido muy buena si te voy a ser sincero. El era el dueño de Venezuela servers el cual mágicamente de un día para otro desapareció, dejando a todos sus clientes como yo sin servidor, sin dinero y nada. La verdad no se que tal es BBhosting porque no volveré a confiar en esta persona. En lo que es web, es un tanto des-prolija, pero en cuanto a paneles es bastante bueno. Saludos y espero no ofender a nadie con la experiencia con este señor. -
Well...It should work, i'm going to test it when i can and see if it doesn't work.
-
Did you replace the code with the one i gave you?
-
Algun Host Bueno que se pague por rapipago o pago facil?
0xCiBeR replied to joaquifs's topic in Soluciones de hosting
La verdad deberías hablar directamente con ellos por mail o otro medio. Acá no se da soporte a problemas con hosting de terceros. -
This should do the trick: Sitios = { {459.77969360352, -1968.7708740234, 8.6134691238403}, {-2533.9658203125, -1618.890625, 526.56469726563}, } function respawn () local x,y,z = unpack(Sitios[math.random(#Sitios)]) local skin = getElementModel ( source ) nardis = spawnPlayer ( source, x, y, z, 0, skin ) fadeCamera(source, true) setCameraTarget(source, source) end addEventHandler("onPlayerWasted", getRootElement(), respawn)
-
¡Ayuda! No me abre el mta
0xCiBeR replied to depato123's topic in Ayuda relacionada al cliente/servidor
Offtopic: -
Algun Host Bueno que se pague por rapipago o pago facil?
0xCiBeR replied to joaquifs's topic in Soluciones de hosting
El único que conozco es SawHost.net, pero siempre esta caída o funciona mal la página, la verdad no lo recomiendo. -
Con respecto a lo primero, realmente no se lo que necesita y lo aclare. Con respecto a lo segundo, no ha necesidad de cambiar la función. En el interiors.map ya esta la posibilidad de en ese interior tener activada o no las armas. Para que editar el script si con poner una simple frase y un integer ya esta?. Saludos.
-
Quieres que se puedan tirar desde el aire? En Shops.lua en la carpeta Server al principio busca esta función: function switchJetpack( source ) if( not isPedOnGround( source ) ) then return end if( doesPedHaveJetPack( source ) ) then removePedJetPack( source ) elseif( getElementData( source, "jetpackFuel" ) and getElementInterior( source ) == 0 ) then if( tonumber( getElementData( source, "jetpackFuel" ) ) > 1 ) then givePedJetPack( source ) end end end Y cambiala por esto: function switchJetpack( source ) if( doesPedHaveJetPack( source ) ) then removePedJetPack( source ) elseif( getElementData( source, "jetpackFuel" ) and getElementInterior( source ) == 0 ) then if( tonumber( getElementData( source, "jetpackFuel" ) ) > 1 ) then givePedJetPack( source ) end end end En cuanto a el uso de armas en interiores, eso se define en el archivo: maps/interiors.map con la variable noweapons="0" <interior id="BurgerShot_Int" posX="363.11" posY="-74.88" posZ="1000.55" rotation="305" interior="10" noweapons="1"/> Ahí dice noweapons. Espero te halla sido de utilidad, saludos!
-
Con esto, luego de ejecutar el comando /fuego prendes fuego todos los jugadores.: function quemar (p,cmd) setPedOnFire ( getRootElement(), true ) end addCommandHandler("fuego",quemar)
-
Con lo del JetPack, simplemente busca la parte de la GUI donde crea la opción y sacala. Así no podrán comprar. Con lo de las armas en interiores no se..
-
¡Ayuda! No me abre el mta
0xCiBeR replied to depato123's topic in Ayuda relacionada al cliente/servidor
Primero que nada, a partir de que te dejo de funcionar?.. Segundo tienes todos los drivers the video, sonido, etc actualizados? Corriste MTADIAG?.. Saludos!