MitnickP56 Posted September 17, 2015 Share Posted September 17, 2015 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
Al3grab Posted September 17, 2015 Share Posted September 17, 2015 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
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