Put together working Facebook Add Javascript

Bammat

Newbie
Joined
Aug 6, 2019
Messages
1
Reaction score
0
Hello, i have two working facebook add scripts. how can i put together these two scripts.

for adding i´m using this script, but from time to time i must confirm that i knnow this person and will them a friend request, but if i now started this script the add-script automaticly stopped. is it possbile to put this 2 scripts into one script and everytime when the message will come automaticly the confirm-button will be "press"

here are the two scripts:

for add


javascript:
var delayInput = prompt("Delay between actions (ms)", "1000");
var stopAfter = prompt("Stop after how many friend requests are sent?", "100");
var workDelay = parseInt(delayInput, 10);

var loading = document.createElement("div");
loading.setAttribute("id", "noni_loading");
loading.setAttribute("style", "position: fixed; background: rgba(255,255,255,0.8); top: 0; left: 0; width: 100%; font-size: 24px; z-index: 1000; padding: 12px;");
document.body.appendChild(loading);
document.getElementById("noni_loading").innerHTML = "No friends added.";

var inputs = document.querySelectorAll('.FriendRequestAdd:not(.hidden_elem)');


var i=0;
var delay=0;
var cont=true;
var stopAfterNumber=0;
if(parseInt(stopAfter, 10)>inputs.length) {
stopAfterNumber=inputs.length;
} else {
stopAfterNumber=parseInt(stopAfter, 10);
}

function addFriends(max){

if(inputs.length<=0) {
document.getElementById("noni_loading").setAttribute("style", "position: fixed; background: rgba(140,60,60,0.8); top: 0; left: 0; width: 100%; font-size: 24px; color: #fff; z-index: 1000; padding: 12px;");
document.getElementById("noni_loading").innerHTML = "No 'Add Friend'-buttons found :(";

alert("That didn't work...");
document.getElementById("noni_loading").setAttribute("style", "display: none;");

} else {

if(workDelay <= 0) {
delay=0;
} else if(workDelay <= 10) {
delay=workDelay+(Math.floor((Math.random()*5)));
} else {
delay=workDelay+(Math.floor(Math.random()*(0.1*delay))-(0.05*workDelay));
}

if(i<stopAfterNumber) {
inputs.click();
document.getElementById("noni_loading").innerHTML = i+" friends added. "+delay+"ms waiting...";
cont=true;
} else {
document.getElementById("noni_loading").innerHTML = i+" friends successfully added!";
document.getElementById("noni_loading").setAttribute("style", "position: fixed; background: rgba(60,140,60,0.8); top: 0; left: 0; width: 100%; font-size: 24px; color: #fff; z-index: 1000; padding: 12px;");
cont=false;
}

i++;
if(cont==true) {
setTimeout(addFriends, delay);
} else {
alert("Success!");
document.getElementById("noni_loading").setAttribute("style", "display: none;")
}
}
}

addFriends();


the confirm script:

var confirmBtns = document.getElementsByTagName('button');
for (var i = 0; i < confirmBtns.length; i++) {
if (confirmBtns.innerHTML == "Confirm") {
confirmBtns.click();
}
}
 
Back
Top