Unfollowing & Unfriending program

weakopps
by weakopps · 23 posts
2 years ago in Help & Requests
Posted 1 year ago
@Don Von Alpha Dom


Discover page liked list. As you can see, there is a list of people who liked a particular post on the discover page.

and/or

Certain user following/followers list.

I make this code and it's messed up. It keeps click on Follow button even though I already follow them

Code
$('button.follow-button.btn-simple:contains("Follow")').click();


-- Mon May 15, 2023 9:37 am --

@Tooly


I'm using automa for now. It's like macro-thing to unfollow. Ngl it takes way longer than I expected. But thank you anyway, I'll catch you up later soon
Posted 1 year ago
FOLLOWING USERS

Code
let minInterval = 1000; // 1 second, adjust as needed (This is safe - I have mine at 500 ms)
let maxInterval = 3000; // 3 seconds, adjust as needed (This is safe - I have mine at 1000 / 1 second)

function clickFollowButton() {
    let followButtons = document.querySelectorAll(".follow-button");
    for (let i = 0; i < followButtons.length; i++) {
        let followText = followButtons[i].querySelector(".follow-txt");
        let followingText = followButtons[i].querySelector(".following-txt");
        if (followText && followText.offsetParent !== null && followingText.offsetParent === null) {
            followButtons[i].classList.add("clicked-button");
            followButtons[i].click();
            break;
        }
    }
    let interval = Math.floor(Math.random() * (maxInterval - minInterval + 1)) + minInterval;
    setTimeout(clickFollowButton, interval);
}

clickFollowButton();


let style = document.createElement('style');
style.innerHTML = `
.clicked-button {
    background-color: red;
    transition: background-color 0.5s ease;
}`;
document.head.appendChild(style);



Please navigate using the URL structure: https://www.imvu.com/next/av/username/ else it would not work! Replace 'username' with the specific username of the profile you wish to visit. The profile has to be loaded in, that's why you need to go thru the URL. (IMVUSocial is great for a big list)

You have the option to select from either their list of followers or the people they are following. However, ensure that you do not already follow or are followed by them, as this would prevent you from appearing on the list and may cause the process to stall.

Just open one of the two tabs and run the script in the console. Enjoy :kat_emoji18:
Posted 8 months ago
there are many ways to do that, but i used to use a software called automatic mouse clicker, and it used to get the job done
Posted 8 months ago
Update:

https://discord.gg/wM75ENWey3

You're able to join my server, login into your account and run a simple command; it will wipe away all your following in no time.
Posted 7 months ago
@Don Von Alpha Dom

@Toolyx


Due to recent imvu updates (account detected as bot), will these codes get me banned? Somehow it's just like bot-thing that doing certain activity with same interval.
Posted 7 months ago
i wish i had theys codes about 4 months ago. now im happy i didnt ether way thank you for the info.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT