Jump to content

[HELP] Autoban


MitnickP56

Recommended Posts

Hi, I tried do autoban script:

seriale =  
{ 
    [ 'Podszywka Mitnicka' ] = '8FA762ECCF76593B06B1482201801C52' 
} 
  
addEventHandler ( 'onPlayerJoin', getRootElement ( ), 
    function ( _, theCurrentPlayers ) 
    local Serial = seriale[getPlayerName(theCurrentPlayers)] 
        if ( Serial ) then 
            if Serial ~= getPlayerSerial ( source ) then 
                banPlayer ( source, false, false, true, getRootElement ( ), 'Wypierdalaj kurwo !' ) 
            end 
        end 
    end 
) 

debugscript: http://imgur.com/mMzLeYy

Link to comment
seriale = 
{ 
    ["8FA762ECCF76593B06B1482201801C52"] = true, 
} 
  
addEventHandler ( 'onPlayerJoin', getRootElement ( ), 
    function (  ) 
    local Serial = getPlayerSerial(source) 
        if ( seriale[Serial] ) then 
            banPlayer ( source, false, false, true, getRootElement ( ), 'Wypierdalaj kurwo !' ) 
        end 
    end 
) 

You could also cancel the onPlayerConnect event instead of spamming your ban list

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...