M7mD-911 Posted October 24, 2013 Share Posted October 24, 2013 شكرآ محمد بس في مشكلةماظهر المركر عدلت علي الاحدثيات ض4 GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(258,134,343,305,"][ مود الانتقالات ][",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_Button[1] = guiCreateButton(498,382,102,53,"ساحة الزومبي",false) local markerName = createMarker(1278.5344238281, -1328.4545898438, 13.365075111389, "cylinder", 2, 255, 0, 0 ) addEventHandler("onMarkerHit", markerName, function () guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end ) معليش رحت مشوآر وجيت العفو ,, سو زر أغلآق :@ < غصب ههههه Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(258,134,343,305,"][ مود الانتقالات ][",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_Button[1] = guiCreateButton(498,382,102,53,"ساحة الزومبي",false,GUIEditor_Window[1]) guiSetVisible(GUIEditor_Window[1], false) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) Link to comment
M7mD-911 Posted October 24, 2013 Share Posted October 24, 2013 GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(258,134,343,305,"][ مود الانتقالات ][",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_Button[1] = guiCreateButton(498,382,102,53,"ساحة الزومبي",false,GUIEditor_Window[1]) guiSetVisible(GUIEditor_Window[1], false) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) ذا بيست عندي استفسار ض2 if plr == localPlayer وش قصدك بذي ؟ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 تحقق من اللاعب This function gets the player element of the client running the current script. Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 اشكر الله ثم كل من The-Best and Manstar and M7mad الحمد الله تم الحل وشكرآ لكم في شيء تاني الحين انا بدي اخليه كلمة ساحة الزومبي لما اضغط عليه تروح مكان محدد وبحط 2 زر تاني مثل المطار بس المشكلة اني معرف احط زر اغلق النافذه ارجو المساعدة Link to comment
#DRAGON!FIRE Posted October 24, 2013 Share Posted October 24, 2013 اشكر الله ثم كل منThe-Best and Manstar and M7mad الحمد الله تم الحل وشكرآ لكم في شيء تاني الحين انا بدي اخليه كلمة ساحة الزومبي لما اضغط عليه تروح مكان محدد وبحط 2 زر تاني مثل المطار بس المشكلة اني معرف احط زر اغلق النافذه ارجو المساعدة addEventHandler "onClientGUIClick" setElementPosition guiSetVisible showCursor Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(287,191,163,297,"Airport v1.0 By MR.KING",false) GUIEditor_Button[1] = guiCreateButton(290,216,154,59,"CIT 1",false) GUIEditor_Button[2] = guiCreateButton(290,288,155,63,"CIT 2",false) GUIEditor_Button[5] = guiCreateButton(291,362,154,59,"CIT 3",false) function onGuiClick(button, state, absoluteX, absoluteY) if source == GUIEditor_Button[1] then-- setElementPosition(localPlayer,1767.8426513672,874.07214355469,10.778722763062) setPedRotation(localPlayer,91.98) end end addEventHandler("onClientGUIClick", root, onGuiClick) guiSetProperty(d,"NormalTextColour", "FF00FF00") سويت وجربت مايروح في اي حتة ملاحظة اانا جربت علي CIT 1 ارجو الرد بسرعة Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(258,134,343,305,"][ مود الانتقالات ][",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_Button[1] = guiCreateButton(498,382,102,53,"ساحة الزومبي",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(498,382,102,53,"ساحة الزومبي 2",false,GUIEditor_Window[1]) guiSetVisible(GUIEditor_Window[1], false) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) addEventHandler('onClientGUIClick',root,function() if source == GUIEditor_Button[1] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[2] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) end end ) Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 مشكور يا ذا بست طيب ابي 3 مركرات وابي لما ينتقل ياخذ منه 3.000 ممكن ؟ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 اذا تبي الماركرات تسوي نفس الوظيفه سوي جدول, onMarkerHit table = {...} -- Ex : table = {x,y,z...} getElementType getPlayerMoney >= 3000 takePlayerMoney Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 بس في مشكلة في كودك لما ادخل واخرج من السيرفر تفتح النافذه لحاله هذه مشكلة انا اريد لما يلمس المركر وياريت تعطيني امثاله علي الكودات هذه اللي انت عطتني ايها حق الجدول وهيك GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) guiSetAlpha(GUIEditor_Window[1],1) GUIEditor_Button[1] = guiCreateButton(302,211,165,42,"CIT 1",false) GUIEditor_Button[2] = guiCreateButton(304,264,160,41,"CIT 2",false) GUIEditor_Button[3] = guiCreateButton(306,316,160,41,"CIT 3",false) GUIEditor_Button[4] = guiCreateButton(309,365,154,38,"Close",false) local markerName = createMarker(1685.8609619141, -2333.4780273438, -2.6796875, "cylinder", 1, 255, 255, 0 ) addEventHandler("onClientMarkerHit", markerName, function () guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end ) هذه كودي اريد حل لو سمحتم Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 -- Server Side # markers = { { x,y,z }, { x,y,z }, { x,y,z } } for k,v in ipairs(markers) do createMarker(v[1],v[2],v[3],'cylinder',2,255,255,9,170) end addEventHandler('onMarkerHit',resourceRoot,function(plr) if ( getElementType(plr) == 'player' and getPlayerMoney(plr) >= 3000 ) then takePlayerMoney(plr,3000) end end ) Edit # كيف تفتح لحالها ؟ اصلا بتكون مقفله -_-" واظن عطيتك كود فوق ليه مستخدك ذا في حاطه ؟ -__-" Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 ياخي افهمنييييييييييييييييييييي شوف انا الحين سويت نافذه عرفت كيف اخليها تروح مكان محدد اوك ؟ بس في مشكلة لما اشغل المود تظهر اللوحة وانا ابيها لما المس المركر فهمتني معليش تعبتك وبنسبة لكودك حق سيرفر هذه لما اسوي المركرات طيب وين مكان احط اسم النافذه ؟؟ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 -- Client Side # GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) guiSetAlpha(GUIEditor_Window[1],1) guiSetVisible(GUIEditor_Window[1], false) GUIEditor_Button[1] = guiCreateButton(302,211,165,42,"CIT 1",false) GUIEditor_Button[2] = guiCreateButton(304,264,160,41,"CIT 2",false) GUIEditor_Button[3] = guiCreateButton(306,316,160,41,"CIT 3",false) GUIEditor_Button[4] = guiCreateButton(309,365,154,38,"Close",false) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) addEventHandler('onClientGUIClick',root,function() if source == GUIEditor_Button[1] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[2] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[3] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) elseif source == GUIEditor_Button[4] then setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) end end ) -- Server Side # markers = { { x,y,z }, { x,y,z }, { x,y,z } } for k,v in ipairs(markers) do marker = createMarker(v[1],v[2],v[3],'cylinder',2,255,255,9,170) end addEventHandler('onMarkerHit',resourceRoot,function(plr) if ( getElementType(plr) == 'player' and getPlayerMoney(plr) >= 3000 ) then takePlayerMoney(plr,3000) end end ) في الجدول, { x,y,z }, { x,y,z }, { x,y,z } بـ احداثيات الماركرات x,y,z استبدل وفي الكلنت setElementPosition(localPlayer,x,y,z) x,y,z = احداثيات الاماكن Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 خخخخخخخخخخخخ تعبتك معايا والله بس وش خلني اقول كود بسيط مع شرح بسيط خخخخخخخخخخخخ احس ان مخ اتلحس طيب في موقع حلو اشفر من عليه ؟ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 اي شيء موب فاهمه قول ؟ ترا ما بتستفيد لو اخذته ومو فاهمه ... وبالنسبه للتشفير فيه تشفيره قويه نوعا ما , https://luac.multitheftauto.com/ طبعا حط صح على خيار Encrypt (only from 1.3.4) ولازم يكون اصدار السيرفر 1.3.4 Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 مشكووووووووووووووووووووووووور ذا بست بس في مشكلة الاعب مايخذ منه 3000 لو انتقل + اللازرار بتفضل موجودة + اريد كلمة كولذ لما ادوس عليها تخرج من لوحة ممكن ؟؟ -- Client Side # GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) guiSetAlpha(GUIEditor_Window[1],1) guiSetVisible(GUIEditor_Window[1], false) GUIEditor_Button[1] = guiCreateButton(302,211,165,42,"CIT 1",false) GUIEditor_Button[2] = guiCreateButton(304,264,160,41,"CIT 2",false) GUIEditor_Button[3] = guiCreateButton(306,316,160,41,"CIT 3",false) GUIEditor_Button[4] = guiCreateButton(309,365,154,38,"Close",false) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) 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 setElementPosition(localPlayer,x,y,z) guiSetVisible(GUIEditor_Window[1],false) showCursor(false) end end ) -- Server Side # markers = { { 1685.7978515625,-2239.2492675781,-2.7029404640198 }, { 1714.3428955078,1614.2807617188,10.015625 }, { -1409.9799804688,-201.85282897949,14.1484375 } } for k,v in ipairs(markers) do marker = createMarker(v[1],v[2],v[3],'cylinder',2,255,255,9,170) end addEventHandler('onMarkerHit',resourceRoot,function(plr) if ( getElementType(plr) == 'player' and getPlayerMoney(plr) >= 3000 ) then takePlayerMoney(plr,3000) end end ) Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 (edited) -- Client Side # GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) guiSetAlpha(GUIEditor_Window[1],1) guiSetVisible(GUIEditor_Window[1], false) GUIEditor_Button[1] = guiCreateButton(302,211,165,42,"CIT 1",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(304,264,160,41,"CIT 2",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(306,316,160,41,"CIT 3",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(309,365,154,38,"Close",false,GUIEditor_Window[1]) local markerName = createMarker(1278.53, -1328.4, 13.3, "cylinder", 2, 255, 0, 0,170 ) addEventHandler('onClientMarkerHit', markerName, function (plr) if plr == localPlayer and not guiGetVisible(GUIEditor_Window[1]) then guiSetVisible(GUIEditor_Window[1], true) showCursor(true) end end ) 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 ) بالنسبه لـ انه ما يسحب فلوس , انا حاط شرط انه لازم يكون فلوسه 3000 وفوق عشان ما يجي سالب لو كانت الفلوس اقل Edited October 24, 2013 by Guest Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 كل شيء تمام بس في مشكلة لو ادخل مركر يسحب 3000 وماتظهر الوحة Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 انت تقصد انك تبيه يسحب من اللاعب 3000 وتطلع اللوحه؟ -- Client Side # GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Window[1] = guiCreateWindow(296,183,182,291,"Airport v1.0 By MR.KING",false) guiSetAlpha(GUIEditor_Window[1],1) guiSetVisible(GUIEditor_Window[1], false) GUIEditor_Button[1] = guiCreateButton(302,211,165,42,"CIT 1",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(304,264,160,41,"CIT 2",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(306,316,160,41,"CIT 3",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(309,365,154,38,"Close",false,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 setElementPosition(localPlayer,x,y,z) 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 ) -- Server Side # markers = { { 1685.7978515625,-2239.2492675781,-2.7029404640198 }, { 1714.3428955078,1614.2807617188,10.015625 }, { -1409.9799804688,-201.85282897949,14.1484375 } } for k,v in ipairs(markers) do marker = createMarker(v[1],v[2],v[3],'cylinder',2,255,255,9,170) end addEventHandler('onMarkerHit',resourceRoot,function(plr) if ( getElementType(plr) == 'player' and getPlayerMoney(plr) >= 3000 ) then takePlayerMoney(plr,3000) triggerClientEvent(plr,'window',plr) end end ) Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 مشكوووووووور المود شغال بس في مشكلة زر CIT 1 CIT 2 CIT 3 Close مش ظاهرين احس ان مود guieditor خربان صح ؟ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 كيف مو ظاهرين؟ هم اساسا اول كانوا خارج النافذه الحين خليتها داخل النافذه يعني لازم تفتح النافذه وتلقى الازرار ذذ Link to comment
فاّرس Posted October 24, 2013 Share Posted October 24, 2013 عدل الاحداثيات لأنك سويت احداثيات خارج النافذه Link to comment
Mr.KING_# Posted October 24, 2013 Author Share Posted October 24, 2013 خخخخخخخخخخخخخ سويتها صح وربي المهم اوك لا تقفل انت بس ماينفع محادثه هيك عندك اسكايب ؟ 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