Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //HIDE THE ANNOYING BOTS
- var to_hide = [
- "dj_lost",
- "grimes4life",
- "PotatoFlute",
- "PlayEmLive",
- "IHeart80s",
- "HeroPup",
- "PieNudesBot",
- "sudobot",
- "az_bot"
- ];
- for (var i = 0; i < to_hide.length; i++) {
- $(".userlist_item_" + to_hide[i]).remove();
- }
- $api.on("user_join", function(e, data) {
- if (to_hide.indexOf(data.name) !== -1) {
- e.cancel();
- }
- });
- //remove bots from count
- function updateUserCount() {
- setTimeout(function() {
- var total_users = $(".userlist_item").length;
- $("#usercount").text(total_users + " connected users");
- }, 2000);
- }
- $api.on("user_join", updateUserCount);
- $api.on("user_leave", updateUserCount);
- $api.on("loaded", updateUserCount);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement