Histórico de Curtidas
-
Pacera deu reputação a luanluciano93 em Conversao Script Ant Mc para Revscriptlocal maxAccPorIp = 4 local creatureevent = CreatureEvent("anti_mc") function creatureevent.onLogin(player) local mc = 0 for _, check in ipairs(Game.getPlayers()) do if player:getIp() == check:getIp() then mc = mc + 1 if mc > maxAccPorIp then return false end end end return true end creatureevent:register()