Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Plugin generated by AMXX-Studio */
- #include < amxmodx >
- new const szNames[ ] [ ] =
- {
- "AMO"
- }
- new szReason[ ] [ ] = { "Remove The Tag from Your Name !" };
- public plugin_init()
- {
- register_plugin( "Kick Players", "1.0", "Xdoctor" );
- }
- public client_authorized( client )
- {
- new szName[ 32 ];
- get_user_name( client, szName, charsmax( szName ) );
- for( new i = 0; i < sizeof( szNames ); i++ )
- {
- if( contain( szName, szNames[ i ] ) )
- server_cmd( "amx_kick ^"%s^" ^"%s^"", szName, szReason );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement