Jump to content

استفسار


Recommended Posts

السلام عليكم

عندي استفسار بسيط

ابي اخليه اذا لمست الماركرين تفتح الوحة

كذا ؟

  
  
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

جرب كذا

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

قد ساعدك 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
قد ساعدك 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 
) 

مشكور

:D

Link to comment
getElementPosition ( marker1 ) or getElementPosition ( marker2 ) 

or : أو , يعني يجيب مكان واحد من الماركرات ذي

and : يجيب مكان الماركرين

توضيحات بسيطه

or

تاخد القيمه الثانيه في حاله لما يكون القيمة الاوله

false

و ـ and

عكس or

تماما

بمعني :

and : تاخد القيمه الثانيه في حاله لما يكون القيمه الاوله ترو

Link to comment
قد ساعدك 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 
) 

مشكور

:D

منور الموضوع :D

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...