Jump to content

Ramsey

Members
  • Posts

    9
  • Joined

  • Last visited

About Ramsey

  • Birthday 04/04/1999

Details

  • Location
    Turkey

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Ramsey's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. Hi everbody! There is an error in the system I built and the debug window repeats continuously. /debugscript 3 said: Database Result Uncolllected After 5 Minutes Error! ( customS.lua:54 ) Codes:
  2. Hello MTA Communinty, I want to change the location of the chat with the script. This setting is in the MTA settings. But my intention is to move the users with the cursor. Thats settings screenshot link: https://prnt.sc/fwagzx Sorry : My Bad English
  3. A normal script: win = guiCreateWindow(0,0,100,100,"window",false) button = guiCreateButton(10,10,10,10,"button",false,win) triggerEvent("convertDX",localPlayer,win)
  4. Look at the image; > http://imgur.com/a/KFplX
  5. My wish is to hide the windows but not to hide the things inside the window.
  6. Hello Guys, I need a help My wish is to hide the gui window but keep the button in the gui window in place Code: wElement = guiCreateWindow(0,0,300,300,"My Window", false) exports.global:centerWindow(wElement) tabPanel = guiCreateTabPanel ( 0, 0.04, 1, 1, true, myWindow ) myTab = guiCreateTab( "TEST TAB", tabPanel ) guiSetAlpha(wElement, 0) for _, v in ipairs(getElementChildren(wElement)) do -- GUİ Elements guiSetAlpha(v, 0.9) -- Not work do this. end Sorry : I am a bad english. My goal is to convert the gui to dx with triggetEvent. The server that makes this one OwlGaming
  7. Hello MTA Communinty, I want to get help from you guys. Example ; sx, sy = guiGetScreenSize() window = guiCreateWindow(sx/2-300/2, sy/2-300/2, 300, 300, "Test Window", false) triggerEvent("convertDX", localPlayer, window) ------------------------------------------------------ addEvent("convertDX", true) addEventHandler("convertDX", getRootElement(), function(window) guiSetAlpha(window,0) --Here I want to get help, the code here will transform the gui element into dx. end) Thank you very much, I tried, but I could not find it.
×
×
  • Create New...