Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <amxmodx>
- #define PLUGIN "NO HLTV and ID_LAN"
- #define VERSION "1.0"
- #define AUTHOR "mforce"
- public plugin_init() {
- register_plugin(PLUGIN, VERSION, AUTHOR)
- }
- public client_putinserver(id) {
- if(!is_user_bot(id)) {
- new steamid[32]; get_user_authid(id, steamid, charsmax(steamid));
- if(equal(steamid, "HLTV") || containi(steamid, "_ID_LAN") != -1)) {
- server_cmd("kick #%d ^"Tolts le ujabb klienst!^"", get_user_userid(id))
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment