Jump to content

undefined

Members
  • Posts

    500
  • Joined

  • Last visited

Everything posted by undefined

  1. It's show only for admins. My server side code: Client-Side Im how to show this everyone?
  2. try this function todo() -- To do end local account = getPlayerAccount(thePlayer) if (not account or isGuestAccount(account)) then return end local accountName = getAccountName(account) if ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "ORGANIZADOR" ) ) ) then todo() elseif ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "MODERADOR" ) ) ) then todo() elseif ( isObjectInACLGroup ( "user.".. accountName, aclGetGroup ( "ADMINISTADOR" ) ) ) then todo() end
  3. Thnx bro. I'll try it.
  4. Use this: SetPlayerHudComponentVisible
  5. Can you write the simple example?
  6. Thank you for reply MIKI785
  7. Hi Guys. Im work on the notice panel. But i have a problem. When i clicked the sendButton, dx element show only for me. How can i show it to everyone?
  8. Yeah. It's solved. Thank you Max+
  9. Hi Guys. I have a perfetcly hud image. But I'm afraid thiefts. How to delete this file?
  10. It's not work. It's solved. Thank you # ZĀ!ـحF ๛..!
  11. It's obviously to make it work with a zombie gamemode that has created this event. @AbaZa: Try to add this line (above the addEventHandler of that event): addEvent( "onZombieWasted", true) It's solved. Thank you Citizen..!
  12. Hi Guys. I have a problem. It's not work and not give error or warning. I dont know the problem. Where is the mistake Code Removed! Help pls
  13. Hi Guys. Im work on the help panel. I tried to make the opening of the panel to be transparent. But the "R" Nothing happens when I press the button. Also its not give error and warning on debugscript. Im how to make the transparent opening? function open() if (guiGetVisible (helpMenu) == true) then if guiGetAlpha(helpMenu) >= 65 then setTimer(function() if not guiGetAlpha(helpMenu) <= 0 then guiSetAlpha(helpMenu, (guiGetAlpha(helpMenu)-5)) end end,50,0) guiSetVisible(helpMenu, false) showCursor(false) end elseif (guiGetVisible (helpMenu) == false) then if guiGetAlpha(helpMenu) <= 0 then setTimer(function() if not guiGetAlpha(helpMenu) >= 65 then guiSetAlpha(helpMenu, (guiGetAlpha(helpMenu)+5)) end end,50,0) guiSetVisible(helpMenu, true) showCursor(true) end end end bindKey ("R", "down", open)
  14. It's solved. Thank you "xXMADEXx"
  15. It's solved. Thank you "tosfera"
  16. There is only "Encrypt (only from 1.3.4)". I use the MTA:SA 1.3.5. How to change to only from 1.3.5 on luac.multitheftauto.com? only from means that your mta server and client version have to be at least 1.3.4 Yeah, i know. But it's give warning; And im added this on the meta.xml; client="1.3.4-0.00000"> How to fix the this warning?
  17. I will try it. There is only "Encrypt (only from 1.3.4)". I use the MTA:SA 1.3.5. How to change to only from 1.3.5 on luac.multitheftauto.com?
  18. Hi Guys. Im use the luac.multitheftauto.com for compile lua. But when im clicked the "Encrypt (only from 1.3.4)", it's disrupt the "Ç-ç-İ-ı-Ğ-ğ-Ü-ü-Ş-ş-Ö-ö". Do you have a compiler that does not disrupt these letters? Thanks.
  19. Im solved it. Thnx
  20. Oh sry. It's not say "Yukariya lutfen sadece sayi giriniz..!" when i write the character on the editBox.
  21. Oh thank you Den. and MrBrutus. It's solved!
  22. This problem is solved. And i have a problem. if type (moneyBox) == "number" then Im write the number on the moneyBox but it's say "Yukariya lutfen sadece sayi giriniz..!". Where is the problem?
  23. All Code Code Removed
×
×
  • Create New...