Jump to content

Tomas

Members
  • Posts

    2,530
  • Joined

  • Last visited

Everything posted by Tomas

  1. Intenta con esto: -- client side setTimer( function () local h, m = getTime() setMinuteDuration(60000) setTime(h, m) end, 10000, 0 )
  2. ¿Qué tipo de script? No tengo mucho tiempo, pero si es algo simple puedo...
  3. interpolateBetween setCameraMatrix
  4. It doesn't and didn't exist... Maybe it's an event from a certain resource?
  5. You're clearing the whole gridlist and only setting the text of first column, that's why.
  6. Aquí no está permitido hablar español, puedes hacer tu post aquí: https://forum.multitheftauto.com/viewforum.php?f=145 (explained him where to correctly post)
  7. Tomas

    customblip

    No te dije que usaras el customblips
  8. Puedes pasar los píxeles a través del trigger y luego dibujar la imágen con dxDrawImage y dxCreateTexture
  9. No se entiende nada tu intento de redacción, btw el apostrofe y la s no se usan para pluralizar
  10. Tomas

    customblip

    dxDrawText dxDrawRectangle
  11. Tomas

    Tuning

    setVehicleHandling
  12. Tomas

    About meta

    No, it's not
  13. Here you go an example, it's using dx rectangles but the algorithm is the same https://github.com/ChicoRDL/-GTi-RPG-V3 ... t.lua#L135
  14. Que el error sólo aparecerá si todos los argumentos están 'mal', por ejemplo aquí: arg1 = false arg3 = false print( (type(arg1) ~= "string" and not arg2 and type(arg3) ~= "string") and "y" or "n" ) --> y Hay sólo un valor correcto y de todos modos pasa la condición, la solución sería esta: if ( type(arg1) ~= "string" or not arg2 or type(arg3) ~= "string" ) then ... error ...
  15. antispam = {} addEventHandler('onPlayerChangeNick', g_Root, function(oldNick, newNick) if ( not isTimer(antispam[source]) ) then outputChatBox('#ffffff[#fefefeChange-Nick#ffffff] #fefefe' .. oldNick .. ' #ff5000 is now known #fefefe' .. newNick, getRootElement(), 3, 180, 255, true) setTimer(function(p) antispam[p] = true end, 5000, 1, source) end end )
  16. Try running this code: for k, v in ipairs(getElementsByType("water")) do destroyElement(v) end
  17. Tomas

    consulta

    Ahh, pues haz un bind a la tecla que quieras y con setControlState supongo se podrá
  18. No need to define another variable function fox () kickPlayer(client) end addEvent( "kick", true ) addEventHandler( "kick", resourceRoot, fox )
  19. function pokazloginy() local team = getPlayerTeam(source) local r, g, b = getTeamColor(team) local hex = RGBToHex (r, g, b) if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then outputChatBox ( hex..getPlayerName(source).." #CFECECADMINIST#ff3301", root, 255, 255, 255, true) end end addEventHandler("onPlayerLogin",root, pokazloginy)
  20. You could use shaders but it's not actually possible to shade only one at once
  21. En la condición utiliza ors ya que ahí sólo dará error si en todos los argumentos hay algo que no es esperado.
  22. Siento responder unos días tarde, tenía unos exámenes y tocaba estudiar Ya instalé la screen pero no sé usarla. He intentado hacer lo que me habéis dicho. Cuando tecleo "screen -dmS mtasa ./mta-server64" no pasa absolutamente nada. ¿En quá consiste exactamente ese comando? Quiero decir ¿Cual es su finalidad? Y cuando tecleo "screen -r mtasa" me salta el siguiente mensaje: There are several suitable screens on: 15007.mtasa (02/02/16 16:22:58) (Detached) 14548.mtasa (01/02/16 21:37:58) (Detached) 14524.mtasa (01/02/16 21:37:44) (Detached) Type "screen [-d] -r [pid.]tty.host" to resume one of them. Creo que a raíz de esas 3 opciones tengo que escoger una por medio de un comando pero como soy nuevo y tal pues no se muy bien cual. ¿Que debo hacer? Agradezco vuestra paciencia y ayuda. sudo reboot screen -r mtasa e
×
×
  • Create New...