^iiEcoo'x_) Posted August 6, 2016 Share Posted August 6, 2016 السلام عليكم عندي استفسار بسيط ابي اخليه اذا لمست الماركرين تفتح الوحة كذا ؟ addEventHandler ("onClientMarkerHit", 1Marker or 2Marker, function (hit) if (hit == localPlayer) and getElementType (hit) == "player" then local _, _, Pz = getElementPosition(hit) local _, _, Mz = getElementPosition(1Marker or 2Marker) if (Mz + 3 >= Pz) and (Pz + 3 >= Mz) then guiSetVisible (GUIEditor.window[1], true) showCursor (guiGetVisible (GUIEditor.window[1]) end end end ) Link to comment
N3xT Posted August 6, 2016 Share Posted August 6, 2016 جرب كذا addEventHandler ("onClientMarkerHit", root, function ( hit ) if ( source == marker or source == marker2 ) then if ( hit == localPlayer ) and ( getElementType ( hit ) == "player" ) then local Pz = getElementPosition(hit) local Mz = getElementPosition(mechMarker) if (Mz + 3 >= Pz) and (Pz + 3 >= Mz) then guiSetVisible (GUIEditor.window[1], true) showCursor (true) end end end end ) Link to comment
^iiEcoo'x_) Posted August 6, 2016 Author Share Posted August 6, 2016 ذي ؟كذا ؟ getElementPosition(marker or marker2) Link to comment
N3xT Posted August 6, 2016 Share Posted August 6, 2016 getElementPosition ( marker1 ) or getElementPosition ( marker2 ) or : أو , يعني يجيب مكان واحد من الماركرات ذي and : يجيب مكان الماركرين Link to comment
^iiEcoo'x_) Posted August 6, 2016 Author Share Posted August 6, 2016 مشكوورر طيب اخر استفسار في ناس يستدمون كذا في بعض الاحيان "" وفي ناس كذا '' وش الحالات الي استخدم بها كل وحدة ؟ Link to comment
AHMED MOSTAFA Posted August 10, 2016 Share Posted August 10, 2016 قد ساعدك N3xT مع ان الاخ تفضل هذا الكود يمكن يفيدك اذا بالكود اخطاء اتمنى تقولي addEventHandler('onClientMarkerHit', root, function () if source == Marker1 then guiSetVisible(window,true) showCursor(true) elseif source == Marker2 then guiSetVisible(window,true) showCursor(true) end end ) او يمكن تستفيد من هذا افضل - اختصاراً للاكواد addEventHandler('onClientMarkerHit', root, function () if source == Marker1 or source == Marker2 then guiSetVisible(window,true) showCursor(true) end end ) Link to comment
^iiEcoo'x_) Posted August 10, 2016 Author Share Posted August 10, 2016 قد ساعدك N3xT مع ان الاختفضل هذا الكود يمكن يفيدك اذا بالكود اخطاء اتمنى تقولي addEventHandler('onClientMarkerHit', root, function () if source == Marker1 then guiSetVisible(window,true) showCursor(true) elseif source == Marker2 then guiSetVisible(window,true) showCursor(true) end end ) او يمكن تستفيد من هذا افضل - اختصاراً للاكواد addEventHandler('onClientMarkerHit', root, function () if source == Marker1 or source == Marker2 then guiSetVisible(window,true) showCursor(true) end end ) مشكور Link to comment
#Soking Posted August 10, 2016 Share Posted August 10, 2016 getElementPosition ( marker1 ) or getElementPosition ( marker2 ) or : أو , يعني يجيب مكان واحد من الماركرات ذي and : يجيب مكان الماركرين توضيحات بسيطه or تاخد القيمه الثانيه في حاله لما يكون القيمة الاوله false و ـ and عكس or تماما بمعني : and : تاخد القيمه الثانيه في حاله لما يكون القيمه الاوله ترو Link to comment
AHMED MOSTAFA Posted August 10, 2016 Share Posted August 10, 2016 قد ساعدك N3xT مع ان الاختفضل هذا الكود يمكن يفيدك اذا بالكود اخطاء اتمنى تقولي addEventHandler('onClientMarkerHit', root, function () if source == Marker1 then guiSetVisible(window,true) showCursor(true) elseif source == Marker2 then guiSetVisible(window,true) showCursor(true) end end ) او يمكن تستفيد من هذا افضل - اختصاراً للاكواد addEventHandler('onClientMarkerHit', root, function () if source == Marker1 or source == Marker2 then guiSetVisible(window,true) showCursor(true) 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