Jump to content

مشكلة فتح لوحة


Recommended Posts

السلام عليكم ورحمة الله وبركاته

سويت لوحة سبورت لكن هناك مشكلة بكود فتح اللوحة بزر

انا مسويها تفتح من حرف K

لكن المشكلة ان ضغط حرف K تفتح وما تغلق مرة اخرى

جربت اسويها اف5 اشتغلت %100

لكن ان رجعتها حرف K تخرب

الاكواد

bindKey("K","down", 
function() 
        guiSetVisible(supportsystem, not guiGetVisible(supportsystem) ) 
    showCursor( guiGetVisible(supportsystem) ) 
    guiSetInputEnabled( guiGetVisible(supportsystem) ) 
     
        if isPlayerGroupName("support") then 
            guiSetEnabled(aMessagesForm,true) 
    end 
end 
) 

Link to comment
bindKey("k","down", 
function () 
guiSetVisible(supportsystem,not guiGetVisible(supportsystem)) 
showCursor(guiGetVisible(supportsystem)) 
guiSetInputEnabled(guiGetVisible(supportsystem))   
if isPlayerGroupName("support") then 
guiSetEnabled(aMessagesForm,true) 
end 
end 
) 
  

جرب

لم تتم التجربة

ما تغيرت المشكلة

Link to comment
  
-- احذف ال usefull function  
-- ثم سوي تالي 
-- Client 
bindKey("k","down", 
function () 
guiSetVisible(supportsystem, not guiGetVisible(supportsystem)) 
showCursor(guiSetVisible(supportsystem)) 
guiSetInputEnabled(guiGetVisible(supportsystem))   
triggerServerEvent("IsSupp", localPlayer) 
end 
) 
  
addEvent("Yes",true) 
addEventHandler("Yes", root, 
function () 
guiSetEnabled(aMessagesForm,true) 
end 
) 
  

سيرفر

  
addEvent("isSupp",true) 
  
addEventHandler("isSupp",root, 
  
    function (  ) 
  
    if isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( source ) ),aclGetGroup ("support") ) then 
  
    triggerClientEvent ( source,"Yes",source ) 
        end 
    end  
    ); 
  
  

-- لم تتم التجربةة

Link to comment
bindKey ( "k", "down", function ( ) 
if isPlayerGroupName("support") then 
guiSetVisible (supportsystem,not guiGetVisible (supportsystem)) 
showCursor (guiGetVisible (supportsystem)) 
end 
end) 

اخي انا ما ابي اللوحة تفتح فقط للسبورت

ابي اللوحة تفتح عند الكل

لكن ان كان الشخص الذي فتحها سبورت يفتح له التاب الاخر

Link to comment

خلص حليتها

مشكوووور اوسكار ردك اعطاني الحل

للي يبي يعرف الحل

bindKey ( "k", "down", function ( ) 
if isPlayerGroupName("support") then 
guiSetVisible (supportsystem,not guiGetVisible (supportsystem)) 
showCursor (guiGetVisible (supportsystem)) 
guiSetEnabled(aMessagesForm,true) 
    else 
guiSetVisible (supportsystem,not guiGetVisible (supportsystem)) 
showCursor (guiGetVisible (supportsystem)) 
end 
end) 

Link to comment

شكراً لك سويت لوحة فيب لكن ما تفتح والدي بق ما به شيئ

addCommandHandler("vip",function() 
    if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
        triggerEventClient("open",source) 
    end 
end) 
     

  
  
addEvent("open",true) 
addEventHandler("open",root,function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
end) 

Link to comment
شكراً لك سويت لوحة فيب لكن ما تفتح والدي بق ما به شيئ
addCommandHandler("vip",function() 
    if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
        triggerEventClient("open",source) 
    end 
end) 
     

  
  
addEvent("open",true) 
addEventHandler("open",root,function() 
    guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) 
    showCursor(guiGetVisible(GUIEditor.window[1])) 
end) 

accName = ?

Link to comment
addCommandHandler("vip",function() 
local accName = getAccountName ( getPlayerAccount ( source) )  
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
triggerClientEvent (source,"open",source) 
end 
end) 

source ماهي معرفة

addCommandHandler("vip",function( source ) 
local accName = getAccountName ( getPlayerAccount ( source) )  
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
triggerClientEvent (source,"open",source) 
end 
end) 
Link to comment
addCommandHandler("vip",function() 
local accName = getAccountName ( getPlayerAccount ( source) )  
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
triggerClientEvent (source,"open",source) 
end 
end) 

source ماهي معرفة

addCommandHandler("vip",function( source ) 
local accName = getAccountName ( getPlayerAccount ( source) )  
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then 
triggerClientEvent (source,"open",source) 
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...