baba Posted March 24, 2015 Share Posted March 24, 2015 سلام عليكم شباب ابي كود زر اذا كبست عليه يعطيني دم+ ابي رز درع يعين اذا كبست على الزر حق الدم يعطيني دم واذا كبسب على السر حق الدرع يعطيني درع ارجو التوضيح Link to comment
^#Dream Posted March 24, 2015 Share Posted March 24, 2015 onClientGUIClick getElementHealth setElementHealth setPedArmor Link to comment
#MFGR7OM Posted March 24, 2015 Share Posted March 24, 2015 onClientGUIClick getElementHealth setElementHealth setPedArmor get....?! Link to comment
The Killer Posted March 24, 2015 Share Posted March 24, 2015 onClientGUIClick getElementHealth setElementHealth setPedArmor + triggerServerEvent و getElementHealth مالها داعي Link to comment
Bassam*Syria Posted March 25, 2015 Share Posted March 25, 2015 السلام عليكم اخوي ظبت لك الاكواد كامله ب لوحه تفتح ب اف 7 جرب و قلي لو ظبت او لا تفضل GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1 guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function () -- الفنكشن if source == GUIEditor.button[1] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false) -- لما يضغط الزر تختفي الماوس setPedArmor ( player, 100 ) -- يعطيه درع 100 end end) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function (player) -- الفنكشن if source == GUIEditor_Button[2] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false)-- لما يضغط الزر تختفي الماوس player = getLocalPlayer() setElementHealth ( player, getElementHealth(player) + 100 ) -- يعطي الاعب دب 100 end end) function open( ) -- فنكشن فتح الوحه guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) لو تحب تعرف من وين اجت الاكواد عشان تعرف تسوي واحد لوحدك اتفضل المواقع https://wiki.multitheftauto.com/wiki/OnClientGUIClick -- امر الضغط على الزر https://wiki.multitheftauto.com/wiki/GuiGetVisible -- اظهار الوحه https://wiki.multitheftauto.com/wiki/ShowCursor -- اظهار الماوس https://wiki.multitheftauto.com/wiki/SetElementHealth -- اعطاء دم https://wiki.multitheftauto.com/wiki/SetPedArmor -- اعطاء درع https://wiki.multitheftauto.com/wiki/BindKey -- فتح الوحه ب زر و تم صنع الوحه ب استخدام مود صنع الوحات لو تبيه الرابط : https://community.multitheftauto.com/in ... ils&id=141 Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 (edited) تم تعديل اعتذر عن الاخطاء لكن عدلت على كود يلي نطرح فوق بدون ما انتبه للكان عامل يعني بس عملت سيرفر و مسحت سطرين كلنت # GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) -- s:arrowup: --> GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1 guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, function () if source == GUIEditor.button[1] then guiSetVisible(GUIEditor.window[1],false) showCursor(false) triggerServerEvent ( "dd", localPlayer) end end) addEventHandler("onClientGUIClick",root, function (player) if source == GUIEditor.button[2] then guiSetVisible(GUIEditor.window[1],false) showCursor(false) triggerServerEvent ( "aa", localPlayer) end end) function open( ) guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) #سيرفر addEvent("aa",true) addEventHandler("aa",root, function() setElementHealth ( source, 100 ) end) addEvent("dd",true) addEventHandler("dd",root, function( ) setPedArmor ( source, 100 ) end end) Edited March 28, 2015 by Guest Link to comment
Bassam*Syria Posted March 25, 2015 Share Posted March 25, 2015 يزن تراك صعبتها على الرجال ض2 Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 يزن تراك صعبتها على الرجال ض2 لو ما فهم شي اشرح له #كذا احسن Link to comment
shwaeki Posted March 25, 2015 Share Posted March 25, 2015 تم قصف الجبهه المهم كودك يسير هيك كلنت addEventHandler("onClientResourceStart", resourceRoot, function() window = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(window, false) guiSetVisible(window,false) guiSetAlpha(window, 1.00) button1 = guiCreateButton(35, 191, 179, 70, "Give Armor", false, window) button2 = guiCreateButton(301, 191, 179, 70, "Give Health", false, window) end ) addEventHandler("onClientGUIClick",root, function () if source == button1 then triggerServerEvent ( "giveHealth", localPlayer) elseif source == button2 then triggerServerEvent ( "giveArmor", localPlayer) end end) bindKey("f3","down", function () guiSetVisible(window,not guiGetVisible(window)) showCursor(guiGetVisible(window)) end) سيرفر addEvent("giveHealth",true) addEventHandler("giveHealth",root, function() setElementHealth( source, 100 ) end) addEvent("giveArmor",true) addEventHandler("giveArmor",root, function() setPedArmor( source, 100 ) end) Link to comment
yazan Posted March 25, 2015 Share Posted March 25, 2015 تم بنجاح # جرب الطعم و عطني رئيك Link to comment
baba Posted March 25, 2015 Author Share Posted March 25, 2015 جرب حق شوقي تراه شغال الوحه اصلن تفتح تاكد من الكود Link to comment
</Mr.Tn6eL> Posted March 25, 2015 Share Posted March 25, 2015 غير اسماء المتغيرات الخاصة بالازرار Client addEventHandler("onClientGUIClick", resourceRoot, function( ) if source == health or source == armor then local getClick = source == health and "setElementHealth" or "setPedArmor" triggerServerEvent("onPlayerGiveArmorOrHealth", localPlayer, getClick) end end) Server addEvent("onPlayerGiveArmorOrHealth", true) addEventHandler("onPlayerGiveArmorOrHealth", root, function(func) _G[func](source, 100) end) Link to comment
Bassam*Syria Posted March 26, 2015 Share Posted March 26, 2015 ^ صناعة هريس ايش هو الهريسه بالظبت ؟ ض2 Link to comment
</Mr.Tn6eL> Posted March 26, 2015 Share Posted March 26, 2015 ^ صناعة هريس ايش هو الهريسه بالظبت ؟ ض2 عاد انت تفهم بالامور ذي قبل ماتتكلم ؟ Link to comment
baba Posted March 26, 2015 Author Share Posted March 26, 2015 غير اسماء المتغيرات الخاصة بالازرارClient addEventHandler("onClientGUIClick", resourceRoot, function( ) if source == health or source == armor then local getClick = source == health and "setElementHealth" or "setPedArmor" triggerServerEvent("onPlayerGiveArmorOrHealth", localPlayer, getClick) end end) Server addEvent("onPlayerGiveArmorOrHealth", true) addEventHandler("onPlayerGiveArmorOrHealth", root, function(func) _G[func](source, 100) end) ممكن توضح يا غالي يعين وين الدم الي يخذو وين الدرع وين اسم الزر Link to comment
</Mr.Tn6eL> Posted March 28, 2015 Share Posted March 28, 2015 health = guiCreateButton(...) armor = guiCreateButton(...) addEventHandler("onClientGUIClick", resourceRoot, function( ) if source == health or source == armor then local getClick = source == health and "setElementHealth" or "setPedArmor" triggerServerEvent("onPlayerGiveArmorOrHealth", localPlayer, getClick) end end) اول سطرين هم الازرار + لاتنسى تحط السيرفر اللي فوق بالرد حقي Link to comment
terreus Posted March 28, 2015 Share Posted March 28, 2015 GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1]) guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function () -- الفنكشن if source == GUIEditor.button[1] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false) -- لما يضغط الزر تختفي الماوس setPedArmor ( player, 100 ) -- يعطيه درع 100 end end) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function (player) -- الفنكشن if source == GUIEditor_Button[2] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false)-- لما يضغط الزر تختفي الماوس player = getLocalPlayer() setElementHealth ( player, getElementHealth(player) + 100 ) -- يعطي الاعب دب 100 end end) function open( ) -- فنكشن فتح الوحه guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) أخونا bassam_medane نسا بعض شيء ^^ "])" Link to comment
</Mr.Tn6eL> Posted March 28, 2015 Share Posted March 28, 2015 GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1]) guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function () -- الفنكشن if source == GUIEditor.button[1] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false) -- لما يضغط الزر تختفي الماوس setPedArmor ( player, 100 ) -- يعطيه درع 100 end end) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function (player) -- الفنكشن if source == GUIEditor_Button[2] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false)-- لما يضغط الزر تختفي الماوس player = getLocalPlayer() setElementHealth ( player, getElementHealth(player) + 100 ) -- يعطي الاعب دب 100 end end) function open( ) -- فنكشن فتح الوحه guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) أخونا bassam_medane نسا بعض شيء ^^ "])" Link to comment
terreus Posted March 28, 2015 Share Posted March 28, 2015 GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1]) guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function () -- الفنكشن if source == GUIEditor.button[1] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false) -- لما يضغط الزر تختفي الماوس setPedArmor ( player, 100 ) -- يعطيه درع 100 end end) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function (player) -- الفنكشن if source == GUIEditor_Button[2] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false)-- لما يضغط الزر تختفي الماوس player = getLocalPlayer() setElementHealth ( player, getElementHealth(player) + 100 ) -- يعطي الاعب دب 100 end end) function open( ) -- فنكشن فتح الوحه guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) أخونا bassam_medane نسا بعض شيء ^^ "])" وين خطأ Link to comment
</Mr.Tn6eL> Posted March 28, 2015 Share Posted March 28, 2015 GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1]) guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function () -- الفنكشن if source == GUIEditor.button[1] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false) -- لما يضغط الزر تختفي الماوس setPedArmor ( player, 100 ) -- يعطيه درع 100 end end) addEventHandler("onClientGUIClick",root, -- امر عندما الاعب يضغط function (player) -- الفنكشن if source == GUIEditor_Button[2] then -- تعريف الزر guiSetVisible(GUIEditor.window[1],false) -- لما يضغط الزر تسكر الوحه showCursor(false)-- لما يضغط الزر تختفي الماوس player = getLocalPlayer() setElementHealth ( player, getElementHealth(player) + 100 ) -- يعطي الاعب دب 100 end end) function open( ) -- فنكشن فتح الوحه guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) أخونا bassam_medane نسا بعض شيء ^^ "])" وين خطأ setPedArmor -- لونه برتقالي يعني سيرفر setElementHealth -- يعطي دم وهمي بالكلنت + function (player) -- الفنكشن يقول الويكي : button: the name of the button which will be clicked , it can be left, right, middle + ]) نوعين من اقواس الاغلاق ليس لديهم قوس الفتح + كودي فوق يكفي Link to comment
yazan Posted March 28, 2015 Share Posted March 28, 2015 اعملها بترايقر و سيرفر كلنت # GUIEditor = { button = {}, window = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(406, 162, 523, 349, "", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 1.00) GUIEditor.button[1] = guiCreateButton(35, 191, 179, 70, "Give Armor", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(301, 191, 179, 70, "Give Health", false, GUIEditor.window[1 guiSetVisible(GUIEditor.window[1],false) ]) end ) addEventHandler("onClientGUIClick",root, function () if source == GUIEditor.button[1] then guiSetVisible(GUIEditor.window[1],false) showCursor(false) triggerServerEvent ( "dd", localPlayer) end end) addEventHandler("onClientGUIClick",root, function (player) if source == GUIEditor_Button[2] then guiSetVisible(GUIEditor.window[1],false) showCursor(false) triggerServerEvent ( "aa", localPlayer) end end) function open( ) guiSetVisible ( GUIEditor.window[1], not guiGetVisible(GUIEditor.window[1]) ) showCursor ( guiGetVisible(GUIEditor.window[1]) ) end bindKey( 'F7', 'down', open ) #سيرفر addEvent("aa",true) addEventHandler("aa",root, function() setElementHealth ( source, 100 ) end) addEvent("dd",true) addEventHandler("dd",root, function( ) setPedArmor ( source, 100 ) end end) وين الغلط 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