Jump to content

مساعدة بشيئ بسيط


Recommended Posts

دا مود انتقالات وجدته بسرفر المهم

kDty1Mr.png?1

هي الفكرة عجبتني انك تنتقل من مكان الي مكان لاكن بياخذ منك فلوس

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

ودي صورة لوحة اللي انا صممتها

SPFtTID.png?1

وذا كودها :-

GUIEditor = { 
    button = {}, 
    label = {}, 
    window = {}, 
} 
GUIEditor = { 
    gridlist = {} 
} 
GUIEditor.window[1] = guiCreateWindow(324, 167, 387, 436, "Places | الأماكن", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
  
GUIEditor.gridlist[1] = guiCreateGridList(10, 28, 367, 355, false, GUIEditor.window[1]) 
  
GUIEditor.button[2] = guiCreateButton(194, 357, 56, 18, "", false, GUIEditor.gridlist[1]) 
guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") 
GUIEditor.label[1] = guiCreateLabel(23, 6, 150, 15, "Place", false, GUIEditor.gridlist[1]) 
guiSetFont(GUIEditor.label[1], "default-small") 
GUIEditor.label[2] = guiCreateLabel(227, 6, 123, 20, "Cost", false, GUIEditor.gridlist[1]) 
guiSetFont(GUIEditor.label[2], "default-small") 
GUIEditor.label[3] = guiCreateLabel(23, 31, 202, 35, "Start | البداية", false, GUIEditor.gridlist[1]) 
guiLabelSetColor(GUIEditor.label[3], 39, 136, 247) 
GUIEditor.label[4] = guiCreateLabel(226, 31, 141, 39, "500$", false, GUIEditor.gridlist[1]) 
guiLabelSetColor(GUIEditor.label[4], 104, 234, 18) 
  
GUIEditor.button[4] = guiCreateButton(10, 384, 189, 43, "Select", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.button[4], "default-bold-small") 
guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFAAAAAA") 
GUIEditor.button[5] = guiCreateButton(201, 384, 177, 43, "Close", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.button[5], "default-bold-small") 
guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FFAAAAAA") 
  
addEventHandler("onClientRender", root, 
    function() 
        dxDrawLine(352, 215, 664, 215, tocolor(255, 255, 255, 255), 1, true) 
    end 
) 
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...