Jump to content

Ryan212

Members
  • Posts

    8
  • Joined

  • Last visited

Ryan212's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. Ok, muito obrigado DNL291 Edit: Onde eu posso postar isso para a equipa de MTA ver o meu topico, ou tenho que enviar um pm?
  2. Boas pessoal, eu estou aqui criar este topico para saber como se contribui para a tradução de Português Portugal (https://translate.mtasa.com/pt/). Eu reparei que a ultima edição foi em 2013 e eu ja estive a colocar mais traduções, mas parece que ninguem reparou (Foi em Setembro ou Outubro). Como faço para dar a continuidade deste sistema?
  3. Ryan212

    MTA crashing.

    Hello, When I enter on one server or enter on map editor, I get forever crashs. There is the image and Diagnostic. Image: http://imgur.com/dUZnlOV MTAdiag: http://pastebin.mtasa.com/252363329
  4. I removed it, and continue same warn, and isn't adding anything.
  5. I used only that for see the gui. function openWindow() Gui() guiSetVisible(Window_Group, not guiGetVisible(Window_Group)) showCursor(not isCursorShowing()) end
  6. Didn't worked TAPL, there is the image. http://i.imgur.com/pPUW5hg.jpg
  7. function Gui() Window_Group = guiCreateWindow(470, 258, 536, 344, "Painel Password do Grupo", false) guiWindowSetSizable(Window_Group, false) guiSetVisible(Window_Group, false) gridlist_group = guiCreateGridList(9, 71, 517, 263, false, Window_Group) local colllumn_Name = guiGridListAddColumn(gridlist_group, "Nome do grupo:", 0.2) local colllumn_Pass1 = guiGridListAddColumn(gridlist_group, "Password do Portão 1:", 0.2) local colllumn_Pass2 = guiGridListAddColumn(gridlist_group, "Password do Portão 2:", 0.2) local colllumn_Pass3 = guiGridListAddColumn(gridlist_group, "Password do Portão 3:", 0.2) local colllumn_Status = guiGridListAddColumn(gridlist_group, "Estado:", 0.2) label = guiCreateLabel(16, 21, 96, 40, "Nome do grupo:", false, Window_Group) guiLabelSetVerticalAlign(label, "center") edit = guiCreateEdit(116, 26, 144, 35, "Nome", false, Window_Group) button_close = guiCreateButton(414, 26, 102, 35, "Fechar", false, Window_Group) guiSetProperty(button_close, "NormalTextColour", "FFAAAAAA") --EventHandler addEventHandler("onClientGUIClick", button_close, closeWindow, false) end addGroupPassword = function(a, b, c, d, e) local row1 = guiGridListAddRow ( gridlist_group ) guiGridListSetItemText ( gridlist_group, row1, colllumn_Name, a, false, false ) guiGridListSetItemText ( gridlist_group, row1, colllumn_Pass1, b, false, false ) guiGridListSetItemText ( gridlist_group, row1, colllumn_Pass2, c, false, false ) guiGridListSetItemText ( gridlist_group, row1, colllumn_Pass3, d, false, false ) guiGridListSetItemText ( gridlist_group, row1, colllumn_Status, e, false, false ) end Well, I'm trying add something to gridlist and that isn't accept and I saw so much warns about "bad Arguments". I do like set it on next page like that: Gopen1 = "1" Gopen2 = "2" Gopen3 = "3" Gclose1 = "4" Gclose2 = "5" Gclose3 = "6" addGroupPassword("Bandido", Gopen1,Gopen2,Gopen3, "Aberto") addGroupPassword("Bandido", Gclose1,Gclose2,Gclose3, "Fechado")
×
×
  • Create New...