Jump to content

كود بسيط مع شرح بسيط :)


Recommended Posts

  • Replies 60
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

سويتتتتتتتتتتتتتتت هيككككككككككككككككك

بس مانفعععععععععععععع

اوففففففففففففففففففف

سويت النافذه والازرار وبدلتها ماشتغلت

يمكن عشان حملت اول اصدار ولما سويت النافذه القديمة كان اخر اصدار ؟

بجرب :@

Link to comment
GUIEditor_Button = {} 
GUIEditor_Button[1] = guiCreateButton(323,194,151,45,"CIT 1",false) 
GUIEditor_Button[2] = guiCreateButton(326,249,147,52,"CIT 2",false) 
GUIEditor_Button[3] = guiCreateButton(326,313,143,52,"CIT 3",false) 
GUIEditor_Button[4] = guiCreateButton(330,372,140,53,"خروج",false) 

اريد هذه الاحدثيات حق النافذه وكلمة خروج تخرج من النافذه معليش بتعبك معايا

انا غيرت الاحدثيات بهذه بس ماظهرت !!!

Link to comment

مثل ما قلت لك تفرق الشاشات

جرب كذا,

-- Client Side # 
  
x3NAD = { 
    xLocation = { 
        ["right"] = { 1 }; 
        ["left"] = { 10 }; 
        ["center"] = { 2 }; 
    }; 
    yLocation = { 
        ["up"] = { 10 }; 
        ["down"] = { 1 }; 
        ["center"] = { 2 };     
    }; 
}; 
  
guiSetLocation = function ( gui, Horizontal, Vertical ) 
    local screenW, screenH = guiGetScreenSize ( ) 
    local windowW, windowH = guiGetSize ( gui, false ) 
    if Horizontal and Vertical then 
        local x, y = tonumber ( x3NAD.xLocation[Horizontal][1] ) or 2, tonumber ( x3NAD.yLocation[Vertical][1] ) or 2 
        local x, y = ( screenW -windowW ) /x, ( screenH -windowH ) /y 
        guiSetPosition ( gui, x, y, false ) 
    end 
end 
  
GUIEditor_Window = {} 
GUIEditor_Button = {} 
GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) 
guiSetLocation(GUIEditor_Window[1],'center','center') 
guiSetAlpha(GUIEditor_Window[1],1) 
guiSetVisible(GUIEditor_Window[1], false) 
GUIEditor_Button[1] = guiCreateButton(0.1, 0.1, 0.9, 0.1,"CIT 1",true,GUIEditor_Window[1]) 
GUIEditor_Button[2] = guiCreateButton(0.1, 0.3, 0.9, 0.1,"CIT 2",true,GUIEditor_Window[1]) 
GUIEditor_Button[3] = guiCreateButton(0.1, 0.5, 0.9, 0.1,"CIT 3",true,GUIEditor_Window[1]) 
GUIEditor_Button[4] = guiCreateButton(0.1, 0.7, 0.9, 0.1,"خروج",true,GUIEditor_Window[1]) 
  
addEventHandler('onClientGUIClick',root,function() 
    if source == GUIEditor_Button[1] then 
        setElementPosition(localPlayer,1685.6872558594,-2333.2932128906,-2.6796875) 
            guiSetVisible(GUIEditor_Window[1],false) showCursor(false) 
    elseif source == GUIEditor_Button[2] then 
        setElementPosition(localPlayer,1713.2843017578,1598.498046875,10.171875) 
            guiSetVisible(GUIEditor_Window[1],false) showCursor(false) 
    elseif source == GUIEditor_Button[3] then 
        setElementPosition(localPlayer,-1381.6556396484,-215.08587646484,14.1484375) 
            guiSetVisible(GUIEditor_Window[1],false) showCursor(false) 
    elseif source == GUIEditor_Button[4] then 
            guiSetVisible(GUIEditor_Window[1],false) showCursor(false) 
        end 
    end 
) 
  
addEvent('window',true) 
addEventHandler('window',root,function() 
    if not guiGetVisible(GUIEditor_Window[1]) then 
         guiSetVisible(GUIEditor_Window[1], true) 
            showCursor(true) 
        end 
    end 
) 

ممكن تضبط وممكن لا,

Link to comment

مشكووووووووووووووووووووووووووووووووووووووووووووووووووووووووووررررررررررررررررررررررررررررررررررر

انا احبككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككككك

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...