Jump to content

ابي اسوي لوحة ماتفتح الا لو الشخص بالاسل بجروب فيب


Recommended Posts

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

انا مسوي مود فيب

وابي الكود كامل مو الفنشكات

لاني سويت كود وخربان مايبي

الوحة الفيب تفتح من حرف   ز

ابي الفيب فقط يفتحها ولما يفتحوها يقولة باشات ولكم 

والي مو فيب يقول لة sorry you dont vip

وشكرا مقدما ياريت الكود كامل مو احد يجي رمي فنكشات وخلاص لان هيك مابيساعدني..

Link to comment

اخي المفروض تاخد الفنكشات وتحاول انت

لانك لو تعود ع الجاهز م بتتعلم شئ

bindKey --- تسوي زر للوحه
واستخدم 
if
isObjectInACLGroup -- يتحقق انت الاعب معه رتبه معينه 
outputChatBox -- يطلع نص ولكم بالشات
وسوي 
else
outputChatBox -- Sorry you dont vip ويطلع نص 
  
-- ~ الفنكشات مع شرح بسيط ~
 

 

Edited by MA[S]RIY
Link to comment
-- #Server Side

addEventHandler ( "onResourceStart", resourceRoot, function (    )
for _, v in ipairs ( getElementsByType ( "player" ) ) do
    if ( isGuestAccount ( getPlayerAccount ( v ) ) == false ) then
        local accName = getAccountName ( getPlayerAccount ( v ) )
            if ( isObjectInACLGroup ( "user." .. accName, aclGetGroup ( "Admin" ) ) ) then
                setElementData ( v, "Open", true )
            end 
        end
    end
end )

addEventHandler ( "onPlayerLogin", root, function ( _, acc )
    if ( isObjectInACLGroup ( "user." .. getAccountName ( acc ), aclGetGroup ( "Admin" ) ) ) then
        setElementData ( source, "Open", true )
    end
end )

-- #Client Side

function ControlSttas()
if ( getElementData ( localPlayer, "Open" ) == true ) then
    guiSetVisible ( Home, not guiGetVisible ( Home ) )
        showCursor ( guiGetVisible ( Home ) )
    end
end

addCommandHandler ( "GG", ControlSttas )

ذا مايظبط لاحول الله وش اسوي

Link to comment
--server
addCommandHandler ("GG",
function (p)
if not isGuestAccount(getPlayerAccount(p)) then
if ( isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(p)), aclGetGroup ( "Admin" ) ) ) then
triggerClientEvent( p,"showPanel", p)
end
end
end
)
--client
addEvent("showPanel", true)
addEventHandler("showPanel",root,function ()
guiSetVisible(Home, not guiGetVisible(Home))
showCursor(guiGetVisible(Home))
end)
 

غير اسل 

Admin 

الى اسل الفيب الي مسويه عندك :$

Link to comment
16 minutes ago, xX|KeMo|Xx said:

--server
addCommandHandler ("GG",
function (p)
if not isGuestAccount(getPlayerAccount(p)) then
if ( isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(p)), aclGetGroup ( "Admin" ) ) ) then
triggerClientEvent( p,"showPanel", p)
end
end
end
)
--client
addEvent("showPanel", true)
addEventHandler("showPanel",root,function ()
guiSetVisible(Home, not guiGetVisible(Home))
showCursor(guiGetVisible(Home))
end)
 

غير اسل 

Admin 

الى اسل الفيب الي مسويه عندك :$

 

الكود الي فوق انا مسويه وصحيح هو بس نسخه وماغير اسم اللوحة انا كنت مسويه لواحد :) xD

Edited by #,+( _xiRoc[K]; >
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...