Bicalho Posted August 17, 2018 Share Posted August 17, 2018 Olá, eu tenho um servidor, e tem alguns sistemas de vips e corporações. Gostaria de saber se tem como colocar o painel B por acl (grupo), e se tiver, como faço isso? Ajudem por favor. Obrigado! Link to comment
DaeRoNz Posted August 17, 2018 Share Posted August 17, 2018 Irá ter de alterar algumas linhas na função que é ativada pela bind "b" e integrar o seguinte codigo no resource ! -- server function isPlayerInACL(player, acl) local accountName = getAccountName( getPlayerAccount(player) ) if accountName ~= "guest" and type( aclGetGroup(acl) ) == "userdata" then return isObjectInACLGroup( "user."..accountName, aclGetGroup(acl) ) end return false end function checkPermission ( acl ) local result = isPlayerInACL(client, acl) triggerClientEvent ( client, "resultPermisson", client, result ) end addEvent( "onCheckPermission", true ) addEventHandler( "onCheckPermission", resourceRoot, checkPermission ) -- client function switch(result) if result then -- chamar função de abrir o painel else outputChatBox("Não tem permissão") end end addEvent( "resultPermisson", true ) addEventHandler( "resultPermisson", localPlayer, switch ) function requestP() triggerServerEvent ( "onCheckPermission", resourceRoot, "Admin" ) -- indicar aqui a acl end bindKey("b", "down", requestP) Link to comment
Bicalho Posted August 17, 2018 Author Share Posted August 17, 2018 Como vc faz pra integrar esse codigo na resource? Tipo, Em que pasta!? Link to comment
Other Languages Moderators Lord Henry Posted August 18, 2018 Other Languages Moderators Share Posted August 18, 2018 19 hours ago, Bicalho said: Como vc faz pra integrar esse codigo na resource? Tipo, Em que pasta!? Leia isso e boa sorte: https://wiki.multitheftauto.com/wiki/PT-BR/Introdução_ao_Scripting 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