Jump to content

0xCiBeR

MTA Team
  • Posts

    1,673
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by 0xCiBeR

  1. Coincido. Lo mejor que he visto hasta ahora.
  2. Por favor, el offtopic a otro lado. En cuanto a la pregunta original, hay muchos posts al respecto, y bastante detallados. Yo creo que si la mayoría de los servidores hoy en día tienen ese scoreboard, podes lograrlo también. Te sugiero lo intentes y en caso de tener algún error, postealo y con gusto podemos ayudarte. Saludos!
  3. Yes, tho now that i remember, you could simply use and easing function that curves your line, if i'm not wrong, OutBack does the trick. I maybe wrong. I curve my animations using easing functions and interpolateBetween.
  4. That's because your for-loop executes more than one time before you release/press your key. Just break the loop using: break Example: ( Tho i don't know how your script works as you are not showing it entierly ): triggerEvent("onClientDXClick",element) break That will prevent your for-loop to continue looping after you triggered the event
  5. I'm not familiar with IPB, but did you try to remove the [ ] on line 88? $localMember = IPSMember::load( $member ); Maybe something like this? $localMember = IPSMember::load( $member ); $localMemMail = $localMember['emailAddress'];
  6. El meta esta bien, probablemente sea un problema con tu ACL. Revisa que este bien puesto el nombre del Resource.
  7. Postea tu meta.xml del resource.
  8. Simplemente busca la función que renderiza (pone visible) el spawn menu de 50p, y editala para que aparezca primero tu menu. Si no me equivoco, es la función que es trigeada en onPlayerWasted o onClientPlayerWasted
  9. Necesitas agregar el resource al ACL admin. resource.TuResource
  10. 0xCiBeR

    GPS!!

    Tenes dos opciones. 1-) Usar este resource: https://wiki.multitheftauto.com/wiki/Shader_examples#Hud_mask 2-) Hacer un radar custom.
  11. It's just a heavy query, you don't need more than 1 query to store an image. Besides, if you have a DB server, you might as well use it..
  12. Actually it's not wrong. Depends on how much network you count on, besides there are many sites that do use this method, tho it's not quite practical, it's a good method and saves Web host space. You could link the file path asigning it to the report, there are more than one way of achieving the same thing. I think it's not safe to say that one way or another is right or wrong.
  13. And why can't you store your image data as a BLOB on a Database?
  14. You could store the data on a remote Web Server.
  15. You should not remove your posts as they may help other users. If you don't want your scripts to be seen, just don't ask for help in a public forum.
  16. ........ Tu intento con la tabla no el código que venís posteando del principio.
  17. Te sugiero utilizar la función de búsqueda de foro antes de hacer una pregunta. https://forum.multitheftauto.com/viewtopic.php?f=146&t=74079 https://forum.multitheftauto.com/viewtopic.php?f=146&t=80404 https://forum.multitheftauto.com/viewtopic.php?f=146&t=70852 Tutorial general sobre Lua: http://lua-users.org/wiki/LuaTutorial Una simple búsqueda: http://lmgtfy.com/?q=tutorial+script+mta
  18. Para saber si esta descargando usa: isTransferBoxActive Para lo de los textos, utiliza: https://wiki.multitheftauto.com/wiki/Server_Scripting_Functions#Text_functions ya que los textos client-side se crean al terminar de descargar el resource. De esa manera, creas texto Server-Side. Saludos.
  19. Postea tu intento, nadie va a hacer las cosas por vos.
  20. You could use some math to curve your Straight Line.
  21. Me alegro que se te soluciono el problema, muchas tarjetas gráficas tienen modo de ahorro de energía, quizás desde el AMD Cataclyst podes desactivarlo sin tener que entrar a la BIOS. Saludos!
  22. Te di como hacerlo mas arriba, sino te sale, postea tu código.
  23. Podes usar las funciones de File Yo personalmente lo haría por SQL, pero es bastante mas avanzado. También podes hacer algo así: Server 1: miTabla = { { }, { }, { }, { } } function devolverTabla() if miTabla then return miTabla end end Server 2(Compilado): local tabla = devolverTabla() function sortearValores() if tabla then for i, valor in ipairs(tabla)do --Lo que quieras hacer end else outputDebugString("Error al obtener la tabla") end end Podes hacerlo de muchas formas.. En cuanto a triggear no se bien a que te refieres, las tablas funcionan tanto en server-side como en client-side. Si lo que queres hacer es sincronizar una tabla entre todos los clientes, podes utilizar: triggerClientEvent
×
×
  • Create New...