Jump to content

Search the Community

Showing results for tags 'soporte.'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 1 result

  1. Estoy ingresando al area de la programación Lua y no tengo muchos conocimientos, igual, intenté algo, viendo tutoriales y demás logré llegar a este codigo para que al entrar al servidor, seleccione un equipo de las tres imagenes. Todo bien, hasta que al hacerle click a la imagen, no pasa nada, ¿que creen que esté mal?. Gracias de ante mano. function chooseG() background = guiCreateStaticImage(0, 0, 1, 1, "imagenes/background.png", true) soldado = guiCreateStaticImage(0.1, 0.100, 0.4, 0.6, "imagenes/infames.png", true) civil = guiCreateStaticImage(0.4, 0.100, 0.4, 0.6, "imagenes/insurgentes.png", true) bandido = guiCreateStaticImage(0.7, 0.100, 0.4, 0.6, "imagenes/imparciales.png", true) showCursor(true) addEventHandler("onClientGUIClick", civil, playerChosen) end function playerChosen() local date, time = getTheTime() if(source==soldado)then setGroup(localPlayer, "INFAMES", date, "Infame") setElementPosition ( localplayer, 0, 0, 0 ) elseif(source==civil)then setGroup(localPlayer, "INSURGENTES", date, "Insurgente") setElementPosition ( localplayer, 0, 0, 0 ) elseif(source==bandido)then setGroup(localPlayer, "IMPARCIALES", date, "Imparcial") setElementPosition ( localplayer, 0, 0, 0 ) end destroyElement(background) showCursor(false) end addEvent("equipo",true) addEventHandler("equipo",root,chooseG)
×
×
  • Create New...