Jump to content

Castillo

Retired Staff
  • Posts

    21,935
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Castillo

  1. Obviamente vos tampoco entendiste que lo que el OP pedia, ya que el recurso "customblips" que le recomendaste no es para lo que el quiere hacer. La respuesta de Blue Pie es correcta, debera usar dxDrawText y algunas otras funciones para obtener la posicion de un blip y luego dibujar un texto.
  2. "A few months ago". Did you even see the date on this topic? it's from 2012.
  3. Please change your resources description to "DELETE", so we can know they're yours.
  4. No hace falta hacer loops, lo podes hacer de esta manera: local accountsTable = { [ "bob" ] = true, [ "bob2" ] = true, [ "bob3" ] = true } function isAccountInTable ( account ) return ( accountsTable [ account ] or false ) end
  5. El primer outputChatBox lo vera todo el servidor, ya que no pusiste al jugador en el argumento visibleTo.
  6. Deberias probar los "aportes" que posteas, si no, ni los pongas, porque solo confundira a los usuarios. De simple vista, puedo notar que es como si lo hubieses hecho alrevez, el contenido de la funcion que se ejecuta con el timer esta mal, esa parte deberia ser la que este antes de poner el timer.
  7. I believe he means an actual object, not an image.
  8. Did you forget to rename all the "SAES" things to "SAMS"? from what I can see, this is all leaked scripts. Topic locked.
  9. Que se "repita" dos veces es porque el primero es el estado del boton "down" y luego al soltar el click, el estado es "up". Si queres que solo se ejecute una vez, tenes que verificar que el "state" sea "down". Por cierto, "onClientClick" es un evento solo del lado del cliente, y "onPlayerClick" solo del lado del servidor.
  10. GTA SA is one thing, MTA is a WHOLE different thing, there's no MTA mod for mobile devices, simple as that.
  11. There's no MTA for mobile devices.
  12. Yo lo hago asi: local x, y = guiGetScreenSize ( ) local sourceX, sourceY = 1920, 1080 -- Tu resolucion de pantalla, donde diseñaste las cosas addEventHandler ( "onClientRender", root, function ( ) dxDrawText ( "Hola mundo", ( 40 / sourceX ) * sx, ( 300 / sourceY ) * sy, ( 187 / sourceX ) * sx, ( 324 / sourceY ) * sy, tocolor(255, 255, 255, 255), 1.00, "pricedown", "left", "top", false, false, false, false, false ) end ) Cambia 'sourceX' y 'sourceY' por la resolucion de la pantalla tuya.
  13. Porque no le preguntas a alguno de los jugadores que lo haya hecho?
  14. Tenes dos comandos ahi, "/pass" y "/bossa2514789", este ultimo es el que verifica si estas dentro del marker, y te teleporta a las coordenadas que pusiste. Lo que tenes que hacer es mover el codigo del comando "/bossa2514789" a la funcion del comando "/pass".
  15. We don't have any problem with people coming up with same resources with different styles, we all re-made something that already existed, just to see if we could, and to learn even more. We're just giving him a few tips, such as the design flaws and such.
  16. That design is even worse, imagine you have around 50-100 players on your server, that grid list can show something like 3 at a time. By the way, "English" is a language, not a country.
  17. Why would someone use this? Lil Toady's admin panel is just fine, and for the looks of it, yours is actually based on his design.
  18. Por mi parte, no voy a ayudarte, dado que al ver el screenshot, me doy cuenta que robaste la imagen del telefono de mi servidor, lo se porque yo mismo edite ese telefono con ese fondo, y el rectangulo donde va la hora.
  19. Uhm, no se si te dijeron, pero asi no se comparten screenshots... Subi la imagen a un sitio, como imgur.com, y pega el link.
  20. Change the description to "DELETE" so we can know it's yours.
  21. Loop 'result' table to get all the results, you are only getting the first one in the table.
  22. Castillo

    GUI Scoreboard

    I told you that guiGridListClear has to go INSIDE "updateGUI" function BEFORE getElementsByType.
  23. Castillo

    GUI Scoreboard

    That function has to go inside the "updateGUI" function, before getElementsByType.
  24. Castillo

    GUI Scoreboard

    You have to use guiGridListClear to clear the grid list before adding the players.
×
×
  • Create New...