Jump to content

ارجو تصحيح الكود


Recommended Posts

السلام عليكم

شباب ابي الوحه تفتح للكونسل

والمشكله الاكواد سيرفرر

وش الحل ؟

addCommandHandler("Cons", 
function ( player ) 
    local accName = getAccountName(getPlayerAccount(player)) 
    if isObjectInACLGroup("user."..accName, aclGetGroup("Console")) then 
        if guiGetVisible ( GUIEditor.window[1] ) then   
            guiSetVisible ( GUIEditor.window[1], false )     
            guiSetVisible ( GUIEditor.window[2], false ) 
            showCursor(false) 
        else 
            guiSetVisible ( GUIEditor.window[1], true ) 
            guiSetVisible ( GUIEditor.window[2], false ) 
            showCursor(true)   
        end   
    else 
        outputChatBox ( "فقط الكونسل ", source, 20,230,249, true ) 
    end 
end) 

بليز سريع شباب

Link to comment

كل شيء ولة حلة :

المفروض تستخدم الوظيفة :

triggerClientEvent 

عموماَ

كودكـ يصير كذآ ~ :

-- # Server Side : 
addCommandHandler("Cons", 
function ( player ) 
    local accName = getAccountName(getPlayerAccount(player)) 
    if isObjectInACLGroup("user."..accName, aclGetGroup("Console")) then 
        triggerClientEvent  ( player,'ShowGui',player ) 
    else 
        outputChatBox ( "فقط الكونسل ", player, 20,230,249, true ) 
    end 
end 
) 

-- # Client Side : 
addEvent('ShowGui',true) 
addEventHandler('ShowGui',root, 
    function (  ) 
            if guiGetVisible ( GUIEditor.window[1] ) then   
            guiSetVisible ( GUIEditor.window[1], false )     
            guiSetVisible ( GUIEditor.window[2], false ) 
            showCursor(false) 
        else 
            guiSetVisible ( GUIEditor.window[1], true ) 
            guiSetVisible ( GUIEditor.window[2], false ) 
            showCursor(true)   
            end 
    end 
) 

عنوان موضوعكـ مخالف لـ قوانين المنتدى ..

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