Jump to content

Simple0x47

Members
  • Posts

    1,518
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Simple0x47

  1. Nivel de vida: addEventHandler( "onClientRender", root, function( ) local progress = getElementHealth( localPlayer ) / 100 local angle = interpolateBetween ( 0, 0, 0, 360, 0, 0, progress, "Linear") dxDrawCircle( screenWidth / 2, screenHeight / 2, nil, nil, nil, nil, angle ) end )
  2. The limit adjuster in my opinion won't be implemented until MTA team agrees that they need to load the .dll at the start of GTA SA.
  3. Daca vrei un host temporal as putea sa iti ofer, numai ca dupa ce trec 5 luni nus sigur daca il pot sa il mai platesc.
  4. Bad luck, while ( true ) loop got broken
  5. El valor maximo de un DWORD :v
  6. Game developing here I'm coming!

  7. I like seeing people sharing which others the knownledge adquired in an individual learning process without waiting any kind of benefits. Respect.
  8. Muy buen aporte, este aporte nos muestra que mediante el aprendizaje uno puede compartir los conocimientos adquiridos a los demás de forma gratuita sin solicitar nada a cambio. Respeto.
  9. ¿Seguro has iniciado el recurso del mapa generado por el Map Editor? ¿Pero al menos estás seguro de que lo has guardado? Si es que ambas preguntas tienen respuesta afirmativa pasame un mensaje y te ayudare con el problema via Skype o TeamViewer. Skype: killer.68x O por PM.
  10. Corona SDK, it's the best option to choose if you don't want to use any C or C++.
  11. You've got to handle each variable into the dbExec calling. So you could think of something like this making a function for each SQL Action: local VARS = table.concat({...}, ",") local SQL_ACTION = "INSERT INTO table ( 'key', 'key', 'key' ) VALUES ( " local SQL_VALUES = "" for value in string.gmatch(str, '([^,]+)') do SQL_VALUES = SQL_VALUES .. " '" .. value .. "'," end SQL_VALUES:sub( 1, -2 ) SQL_ACTION = SQL_ACTION .. SQL_VALUES .. ")" dbExec( SQL_ACTION ) -> It's just an example it should work if it's right used.
  12. The Lua version MTA uses I think is 5.1.
  13. I'm a seruis gui, hope my seruisity is enough for you. :V
  14. Seems that MTA Team doesn't want to implement it because they don't want to load a .DLL just for the limiter at the start because it could be vulnerable to external injections. The best way would be to adapt the Fastman adjuster into the core of MTA.
  15. No answer from ya', hope you gonna ask here at least. :v
  16. Have you created the object with the lowLod option with value true? And about this, why he should use the K,V vars if they're not relevant in what he's doing
  17. You could at least warn the customers weeks before you're not giving them what they actually ordered. I say this because I did this lots of times due to lack of organization and time.
  18. mySQL/SQLite/XML: "Long Life" Storage Method. elementData, tables: Streaming data method. It's not correct 100%, but it's useful to catch the difference between them. And about the use of elementData I totally discourage it's use with the purpose of syncing big amounts of data with the client or the server. I like to use Tables and Events instead of elementData ( little bit more difficult but it worth's it ).
  19. Open Source Roleplay.. Hmm... Storage method: mySQL, SQLite, XML? Language: English, Multilanguage? Name of the project?
  20. You could have worked more on it, but nice release.
  21. Bueno lo primero dime la dirección del archivo que quieres reproducir.
×
×
  • Create New...