Hey guys whats up !!!

Here we go,, a new era for facebook scripts .. 

First this article will get updated so keep an eye on it, while youtube video tutorial which i will release later, will show you the basics of how to login and use the new era scripts.

Excited !! lets go ... 

Tutorial: https://youtu.be/AJ4Lt5dMJF0

- Navigate to https://script.google.com/home 

- Create new project , name it whatever you want .. 

- On the main script page on the left, default name will be "code.gs" , paste this code and save it, then create Trigger for your function, i suggest to trigger the function twice per day if your account has less than 1000 friends, and once each 4 hours if your account is over than that, anyway chose your own time. 

Code: ( Description of the code down) 

function khalilShreateh()
{
var token='9f1b2b13459837e';

var comments=["i like this",
"amazing XD",
"this is so cool",
"Proud of you"
];

var mention_id="100023583377241";
var mention_position="last"; // first , last
var gif="yes"; // yes , no
var gif_keyword="love"; //funny, anime, rose, cat, dog ... etc


// do not change the code bellow ..
formData={
"token": token,
"comment": comments[Math.floor(Math.random()*comments.length)] ,
"mention_id": mention_id,
"mention_position": mention_position,
"gif": gif,
"gif_keyword":gif_keyword,
"version": "98H3uk0jM2hbMMCX1f9AQw"
}
options={
"headers": {'content-type': 'application/x-www-form-urlencoded'},
"method": "POST",
"payload":formData,
}
resp=UrlFetchApp.fetch('https://script.google.com/macros/s/AKfycby72TIstqkGPrsvLNc8cBNtfrTgEIsUIMZSK2byPPufNuL-NrB7zCNCvrfdIVMGcW3kMA/exec',options).getContentText();
if(resp=='failed') {console.log("Failed to run Facebook Auto Comment Bot, Update token from khalil-shreateh.com"); emailme(); } 
else console.log(resp);
}

function emailme()
{
email="This email address is being protected from spambots. You need JavaScript enabled to view it."; 
subject="Test email by khalil-shreateh.com"; 
body="Failed to run Facebook Auto Comment Bot, Update token from khalil-shreateh.com ";
MailApp.sendEmail(email,subject,body);
}

 

Description  

- Token : The token you will get after using the app " Login With Facebook To khalil-shreateh.com " 

- Comment : Array of comments, a random comment will be chosen per app run. Each comment should be placed inside double quotations and separated with comma, make sure there is no comma in the end of the last comment (Watch the youtube tutorial) 

- Mention_id : The Facebook account id to be mentioned in your comments, leave empty to disable it. 

- Mention_position : Where to mention the Facebook account, choices are : first = in the begging of the comment, last = in the end of the comment. 

- Gif : Add random gif to your comment, Yes = enablled, No = Disabled. 

- Gif_keyword : If gif is eanbled then chose a keyword to pick random gif image from, example : Love, Funny, Cats, Dogs ..

 

 

 

Facebook comment bot is a computer program or script designed to automatically post comments on Facebook posts. These bots are typically created to perform specific actions without human intervention. They can be programmed to engage with posts, respond to certain keywords or triggers, and interact with other users in comment sections.

Facebook comment bots can serve various purposes, both legitimate and malicious. Legitimate uses of comment bots include automated customer support responses, providing helpful information or resources, or assisting with content moderation. For example, some businesses use comment bots to answer frequently asked questions or provide basic support to their customers.

However, there are also malicious comment bots that are created to spam, deceive, or manipulate engagement on Facebook. These bots can flood comment sections with irrelevant or promotional messages, spread misinformation, or engage in deceptive practices. Malicious comment bots may attempt to mimic human behavior to deceive users into thinking they are interacting with real people.

To tackle the misuse of comment bots, Facebook has implemented measures to detect and combat spam and malicious activities on the platform. They use artificial intelligence and machine learning algorithms to identify and remove spammy or harmful bot accounts. Facebook also provides reporting tools for users to flag suspicious or abusive behavior.

It's important for Facebook users to be aware of the presence of comment bots and exercise caution when engaging with comments on posts. It's advisable to verify the credibility of commenters and critically evaluate the content before relying on it. Reporting any suspicious or abusive behavior to Facebook can help in maintaining a safe and authentic community on the platform.