developer Posted February 14, 2015 Share Posted February 14, 2015 (edited) ابي مساعده في دا الكود GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(441, 128, 622, 484, "BY IIwantedII", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(20, 43, 592, 80, "RAIN", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "clear-normal") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF0929F0") FOG= GUIEditor.button[2] guiCreateButton(9, 161, 603, 92, "FOG", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF0633F5") GUIEditor.button[3] = guiCreateButton(10, 269, 602, 92, "SUNNY", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFF2F505") GUIEditor.button[4] = guiCreateButton(22, 384, 590, 90, "DUST", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FF0929F0") end ) guiSetVisible (Window, false) function OpenWin() if guiGetVisible ( Window ) then guiSetVisible ( Window, false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( Window, true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F2", "down", OpenWin) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == FOG then setWeather ( 9 ) outputChatBox("WEATHER CHANGED TO FOGGY !!!") end end ) Edited February 14, 2015 by Guest Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 القسم خطأ ! ضع موضوع في قسم البرمجه Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 رد عليه عنا و يجزيك الله خير Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 انا كمان WEBDEVELOPER Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 اذا انت مطور ويب وتعرف لل php - html -.. وش تبغى في ال mta ? ههه Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 ابي اسوي سيرفر ضض و مودات و دا الكلاام + انا اعرف PHP+HTML فقط Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 يا اخي مطورين الويب مشغولين بتصميمم مواقع حتى يجلبون مليارات خلص اترك ام تي اي ورح سوي لك موقع احترافي او بفكره جديده صدقني تضيع وقت اذا بتفضى لبرمجه لعبه ام تي اي Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 لا مش بضيع وقط انا لما بتعلم mta بتعلم معها لغه LUA Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 انا متأكد انك ما زلت تحت المبتدىء في برمجه الويب Link to comment
TAPL Posted February 14, 2015 Share Posted February 14, 2015 حاط كود و تبي مساعدة بس مو كاتب وش المشكلة؟ ينقل إلى قسم البرمجة Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 لما اضغت عل زر ما يحول ال جو ليش ؟؟؟ زر FOG Link to comment
TAPL Posted February 14, 2015 Share Posted February 14, 2015 انت مسوي خبصه هنا: FOG= GUIEditor.button[2] guiCreateButton(9, 161, 603, 92, "FOG", false, GUIEditor.window[1]) المفروض تسويه كذا: GUIEditor.button[2] = guiCreateButton(9, 161, 603, 92, "FOG", false, GUIEditor.window[1]) و هذا تغيره: if source == FOG then إلى: if source == GUIEditor.button[2] then Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 شكرا حبي تابل اتمني مساعدتك علي طول Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 function () if source == FOG then setWeather ( 9 ) outputChatBox("WEATHER CHANGED TO FOGGY !!!") end end ) يا حبيبي فاهم الادوات شرطه غلط ب غلط راجع اساسيات يا مطور الويب Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 نصير اصدقاء وش السكايب حقق Link to comment
iMr.TZ[W]ER Posted February 14, 2015 Share Posted February 14, 2015 الكود كلنت وشاك في امرك انا حاسس انك جيمر ليش مش عارف Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 انا مطور الويب لاكن مبتدأ في برمجه mta Link to comment
Nickelz Posted February 14, 2015 Share Posted February 14, 2015 عندك أخطاء في الكود, عدلتها كلها GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(441, 128, 622, 484, "BY IIwantedII", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1], false) GUIEditor.button[1] = guiCreateButton(20, 43, 592, 80, "RAIN", false, GUIEditor.window[1]) guiSetFont(GUIEditor.button[1], "clear-normal") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF0929F0") GUIEditor.button[2] = guiCreateButton(9, 161, 603, 92, "FOG", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FF0633F5") GUIEditor.button[3] = guiCreateButton(10, 269, 602, 92, "SUNNY", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFF2F505") GUIEditor.button[4] = guiCreateButton(22, 384, 590, 90, "DUST", false, GUIEditor.window[1]) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FF0929F0") end ) function OpenWin() if guiGetVisible(GUIEditor.window[1]) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) else guiSetVisible(GUIEditor.window[1], true) showCursor(true) end end bindKey("F2", "down", OpenWin) addEventHandler ("onClientGUIClick", getRootElement(), function () if ( source == GUIEditor.button[2] ) then setWeather ( 9 ) outputChatBox("WEATHER CHANGED TO FOGGY !!!") end end ) Link to comment
#MostafaSaadi Posted February 14, 2015 Share Posted February 14, 2015 اوك واصل واصل تزوير .. سكران ؟ هههه Link to comment
developer Posted February 14, 2015 Author Share Posted February 14, 2015 تم عمل المود شكرا عل مساعده 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