|
29 | 29 | Made with ❤️ by <a href="https://github.com/403Code">Nanta</a> |
30 | 30 | </p> |
31 | 31 |
|
| 32 | +--- |
| 33 | + |
32 | 34 | ## 🔎 Features |
33 | | -* Automatically react to posts with multiple types of reactions |
34 | | -* Change cookies from Pastebin or any service that supports raw/plain text |
| 35 | +* Reacting posts with multiple reactions |
| 36 | +* Change cookies from Pastebin or any raw/plain text source |
| 37 | +* Auto-follow option (enable/disable) |
| 38 | +* 🌐 More stable using `www.facebook.com` |
| 39 | +* 🔔  Discord Webhook integration for activity logs |
| 40 | + |
| 41 | +--- |
| 42 | + |
| 43 | +## 🤔 How to use |
| 44 | + |
| 45 | +Go to this part of the code: |
35 | 46 |
|
36 | | -## 🤔 How to Use |
37 | | -Locate this part of the code: |
38 | 47 | ```javascript |
39 | 48 | const config = { |
40 | | - cookie: "xxx", |
41 | | - reactType: [1,16,2,3], |
| 49 | + cookie: "xxx", |
| 50 | + reactType: [1,16,2,3], |
| 51 | + webhookUrl: "xxx", |
42 | 52 | }; |
43 | 53 | ``` |
| 54 | + |
44 | 55 | ### 🚶♂️ Steps: |
45 | | -- 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](https://pastebin.com). Example: `cookie: "https://pastebin.com/raw/xxxxxxxx",` |
46 | | -- Update `reactType` with 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. |
47 | | - |
48 | | -## 📑 Reaction Table |
49 | | -| Reaction Name | React ID | Emoji | |
50 | | -|---------------|----------|-------| |
51 | | -| LIKE | 1 | 👍 | |
52 | | -| LOVE | 2 | ❤ | |
53 | | -| WOW | 3 | 😮 | |
54 | | -| HAHA | 4 | 😆 | |
55 | | -| SAD | 7 | 😢 | |
56 | | -| ANGRY | 8 | 😡 | |
57 | | -| CARE | 16 | 🤗 | |
| 56 | + |
| 57 | +- Change `"xxx"` in **cookie** with your Facebook cookies |
| 58 | + Example: |
| 59 | + ```javascript |
| 60 | + cookie: "sb=xxxxxx;datr=xxxxxxxxx;c_user=xxxxxxxx", |
| 61 | + ``` |
| 62 | + (keep the quotes) |
| 63 | + |
| 64 | + Or use raw link: |
| 65 | + ```javascript |
| 66 | + cookie: "https://pastebin.com/raw/xxxxxxxx", |
| 67 | + ``` |
| 68 | + |
| 69 | +- Set **reactType** based on the table below |
| 70 | + Example: |
| 71 | + ```javascript |
| 72 | + reactType: [1,16,2,3], |
| 73 | + ``` |
| 74 | + This will randomly react with LIKE, CARE, LOVE, and WOW |
| 75 | + |
| 76 | + For single reaction: |
| 77 | + ```javascript |
| 78 | + reactType: [1], |
| 79 | + ``` |
| 80 | + |
| 81 | +- Set **webhookUrl** with your Discord webhook URL |
| 82 | + Example: |
| 83 | + ```javascript |
| 84 | + webhookUrl: "https://discord.com/api/webhooks/xxxx", |
| 85 | + ``` |
| 86 | + This will send activity logs to your Discord server |
| 87 | + |
| 88 | +--- |
| 89 | + |
| 90 | +## 📑 Reacts Table |
| 91 | + |
| 92 | +| Reaction Name | React ID | React Emoji | |
| 93 | +|---------------|----------|-------------| |
| 94 | +| LIKE / SUKA | 1 | 👍 | |
| 95 | +| LOVE / SUPER | 2 | ❤ | |
| 96 | +| WOW | 3 | 😮 | |
| 97 | +| HAHA | 4 | 😆 | |
| 98 | +| SAD / SEDIH | 7 | 😢 | |
| 99 | +| ANGRY / MARAH | 8 | 😡 | |
| 100 | +| CARE / PEDULI | 16 | 🤗 | |
| 101 | + |
| 102 | +--- |
58 | 103 |
|
59 | 104 | ## 📲 Contact |
60 | 105 | [](https://www.facebook.com/dementorize) |
61 | 106 | [](https://t.me/Rizemary) |
62 | 107 | [](https://instagram.com/dementorize) |
63 | 108 |
|
64 | | -## 💰 Support Me |
| 109 | +--- |
| 110 | + |
| 111 | +## 💰 Support me |
65 | 112 | [](https://buymeacoffee.com/zonenathan) |
66 | 113 | [](https://paypal.me/Rizemary) |
67 | 114 | [](https://ko-fi.com/zonenathan) |
68 | | -[](https://trakteer.id/d.izzy) |
69 | | -[](https://saweria.co/zeryuu) |
70 | | -[](https://nyawer.co/zeryuu) |
| 115 | +[](https://trakteer.id/d.izzy) |
| 116 | +[](https://saweria.co/zeryuu) |
| 117 | +[](https://nyawer.co/zeryuu) |
71 | 118 |
|
72 | 119 | ## 🌐 Other Readme |
73 | 120 | -blue) [](https://github.com/403Code/Bot-React/blob/main/README.ID.md) |
|
0 commit comments