Jump to content

كود اقفال الوارب


Recommended Posts

local CanWarp = false 
addCommandHandler("Lock", 
function ( ) 
    if CanWarp == false then 
        CanWarp = true; 
        setElementData(localPlayer,"CanWarp",true); 
                outputChatBox("true"); 
    else 
        CanWarp = false; 
        setElementData(localPlayer,"CanWarp",false); 
        outputChatBox("false"); 
    end; 
end 
) 
  
addEventHandler("onClientGUIClick",Button, 
    function ( ) 
local Get = guiGridListGetItemText ( GridList, guiGridListGetSelectedItem ( GridList ), 1 ); 
    if  guiGridListGetSelectedItem( GridList ) == -1 then return outputChatBox("* Please Choose Player") end; 
local Plr = getPlayerFromName(Get); 
        x,y,z = getElementPosition(Plr); 
            if x and y and z then 
                if getElementData(Plr,"CanWarp") == true then 
                    setElementPosition(localPlayer,x,y,z); 
                    outputChatBox("Data = true",255,255,0,true); 
                        else 
                            outputChatBox("Data = false",255,0,0,true); 
                        end; 
                    end; 
                end,false 
    ) 
  

تفعيل الداتا

Lock

تكتبها يفعلها تكتبها يلغيها تكتبها يفعلها تكتبها يلغيها وهذا المثال يوم تضغط على اسم الاعب من لستة يجيب اسمة من اللستة ويجيب احداثياتة واذا كانت الداتا ترو ينقلك اذا لا يقولك انة الداتا مقفلة مجرد مثال بسيط .. كلنت

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...