Oussama_Dz Posted July 14, 2017 Share Posted July 14, 2017 السلام عليكم ورحمة الله تعالى وبراكته اريد فاكشن لفتح لوحة لادمن فقطيعني مثل لوحة الادمنية Link to comment
Rockyz Posted July 14, 2017 Share Posted July 14, 2017 (edited) في طريقة حلوة حط حدث لما يسجل الاعب و يدخل السيرفر تحط هذي الفنكشنات isGuestAccount getPlayerAccount getAccountName isObjectInACLGroup aclGetGroup setElementData وفي الكلنت تتاكد انه عنده الداتا وتفتح اللوحة Edited July 14, 2017 by #,+( _xiRoc[K]; > Link to comment
coNolel Posted July 14, 2017 Share Posted July 14, 2017 24 minutes ago, #El_MaJnOn said: السلام عليكم ورحمة الله تعالى وبراكته اريد فاكشن لفتح لوحة لادمن فقطيعني مثل لوحة الادمنية لوحة الادمنية تفتح للرتب اللي عندهم فنكشن في اللوحة والله أعلم مو متأكد Link to comment
Rockyz Posted July 14, 2017 Share Posted July 14, 2017 Just now, coNolel said: لوحة الادمنية تفتح للرتب اللي عندهم فنكشن في اللوحة والله أعلم مو متأكد هو قصده يبي لوحة تفتح مثل لوحة الادمنية لقروب معين Link to comment
Oussama_Dz Posted July 14, 2017 Author Share Posted July 14, 2017 Just now, coNolel said: لوحة الادمنية تفتح للرتب اللي عندهم فنكشن في اللوحة والله أعلم مو متأكد يب لكن انا ابي تنفتح بالاسل Just now, #,+( _xiRoc[K]; > said: هو قصده يبي لوحة تفتح مثل لوحة الادمنية لقروب معين يب مثل ما قال روك Link to comment
Rockyz Posted July 14, 2017 Share Posted July 14, 2017 2 minutes ago, #,+( _xiRoc[K]; > said: في طريقة حلوة حط حدث لما يسجل الاعب و يدخل السيرفر تحط هذي الفنكشنات isGuestAccount getPlayerAccount getAccountName isObjectInACLGroup aclGetGroup setElementData وفي الكلنت تتاكد انه عنده الداتا وتفتح اللوحة استخدم الفنكشنات الي اعطيتك ياها 1 Link to comment
Oussama_Dz Posted July 14, 2017 Author Share Posted July 14, 2017 --server function TsT() local Account = getPlayerAccount(source) if isGuestAccount ( Account ) then local accName = getAccountName(Account) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then setElementData ( source, "Open", true ) else setElementData ( source, "Open", false ) end end end --client function ControlSttas() if getElementData(localPlayer,"Open",true) then if (guiGetVisible(Home) == false) then guiSetVisible(Home,true) showCursor(true) else guiSetVisible(Home,false) showCursor(false) end end end addCommandHandler("GG",ControlSttas) ما عم تنفتح اللوحة Link to comment
Rockyz Posted July 14, 2017 Share Posted July 14, 2017 -- #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
Oussama_Dz Posted July 14, 2017 Author Share Posted July 14, 2017 شكرا @#,+( _xiRoc[K]; > Link to comment
Rockyz Posted July 14, 2017 Share Posted July 14, 2017 2 minutes ago, #El_MaJnOn said: شكرا @#,+( _xiRoc[K]; > عفوا .. ! 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now