Made with ❤️ by Nanta
- Automatically react to posts with multiple types of reactions
- Change cookies from Pastebin or any service that supports raw/plain text
Locate this part of the code:
const config = {
cookie: "xxx",
reactType: [1,16,2,3],
};- Replace
"xxx"with your Facebook cookies. Example:cookie: "sb=xxxxxx;datr=xxxxxxxxx;c_user=xxxxxxxx",(do not remove the quotation marks). Alternatively, you can use a service that shows raw/plain text such as Pastebin. Example:cookie: "https://pastebin.com/raw/xxxxxxxx", - Update
reactTypewith the reactions (using React IDs) you want to use. Refer to the table below. Example:reactType: [1,16,2,3],(no quotes, separated by commas). This will randomly apply LIKE, LOVE, WOW, and CARE reactions to each post. If you only want a single reaction, use:reactType: [1],which means only the LIKE reaction will be applied.
| Reaction Name | React ID | Emoji |
|---|---|---|
| LIKE | 1 | 👍 |
| LOVE | 2 | ❤ |
| WOW | 3 | 😮 |
| HAHA | 4 | 😆 |
| SAD | 7 | 😢 |
| ANGRY | 8 | 😡 |
| CARE | 16 | 🤗 |

