SAM!! Posted July 27, 2017 Share Posted July 27, 2017 السلام عليكم انا ابي اسوي مود لوحة تظهر بوجهة اي احد يدخل السيرفر جديد لتحميل السكنات واشكال الاسلحة يختار الي يبي يحملة ليحملة والي مايبي يحملة يتركة لبعدين سويت اللوحة ومعي الاكواد بس ماعرف كيف اركب الاكواد علي القريد ليست ياريت مساعدة ذي الكلنت GUIEditor = { gridlist = {}, window = {}, button = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(251, 101, 317, 444, "HarD Download System", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.gridlist[1] = guiCreateGridList(9, 23, 298, 334, false, GUIEditor.window[1]) guiGridListAddColumn(GUIEditor.gridlist[1], "TXD", 0.5) guiGridListAddColumn(GUIEditor.gridlist[1], "Size", 0.5) GUIEditor.button[1] = guiCreateButton(180, 382, 117, 32, "Close", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "default-bold-small") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.button[2] = guiCreateButton(19, 382, 117, 32, "Download", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[2], "default-bold-small") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") end -الاكواد حقت التحميل ياريت احد محترم يربطهم لي ببعض addEventHandler ( "onClientGUIClick", GUIEditor.button[1], function () downloadFile ( "c1.dff" ) downloadFile ( "c1.txd" ) end) addEventHandler ( "onClientGUIClick", GUIEditor.button[2], function () guiSetVisible(GUIEditor.window[1], false) showCursor ( false ) end) function onDownloadFinish ( file, success ) if ( source == resourceRoot ) then if ( success ) then if ( file == "c1.txd" ) and ( file == "c1.dff" ) then txd = engineLoadTXD("1.txd") engineImportTXD(txd, 1) dff = engineLoadDFF("1.dff", 0) engineReplaceModel(dff, 1) end end end end addEventHandler ( "onClientFileDownloadComplete", getRootElement(), onDownloadFinish ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now