WeeD1 Posted July 8, 2020 Share Posted July 8, 2020 Oi, estou tentando fazer um anti-afk, porém quero colocar para quem não estiver logado não ser pego pelo sistema. Fiz algumas tentativas, porém não estou conseguindo achar o problema. Quem poder dar um help, agradeço server-side setTimer( function() for _, player in ipairs(getElementsByType("player"))do login = getPlayerAccount ( player ) if isGuestAccount ( login ) then if not isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(player)), aclGetGroup ("Staff")) then if (getPlayerIdleTime(player) > 60000) then kickPlayer(player, "Você foi expulso por inatividade") end end end end end, 30000, 0) Link to comment
Other Languages Moderators Lord Henry Posted July 8, 2020 Other Languages Moderators Share Posted July 8, 2020 if (not isGuestAccount (login)) then 1 Link to comment
ber Posted July 9, 2020 Share Posted July 9, 2020 23 hours ago, WeeD1 said: Oi, estou tentando fazer um anti-afk, porém quero colocar para quem não estiver logado não ser pego pelo sistema. Fiz algumas tentativas, porém não estou conseguindo achar o problema. Quem poder dar um help, agradeço server-side setTimer( function() for _, player in ipairs(getElementsByType("player"))do login = getPlayerAccount ( player ) if isGuestAccount ( login ) then if not isObjectInACLGroup ( "user." ..getAccountName(getPlayerAccount(player)), aclGetGroup ("Staff")) then if (getPlayerIdleTime(player) > 60000) then kickPlayer(player, "Você foi expulso por inatividade") end end end end end, 30000, 0) Na linha 5 precisa-se de um not ou false, pois desse jeito ela só está kikando os players que estão deslogados. 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