Skip to content

Commit 81509df

Browse files
authored
Update README.ID.md
1 parent a31ef9b commit 81509df

1 file changed

Lines changed: 80 additions & 31 deletions

File tree

README.ID.md

Lines changed: 80 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,72 +2,121 @@
22
<img src="https://raw.githubusercontent.com/403Code/403Code/main/picture/fb-bot-react.gif" width="500">
33
</p>
44
<h4 align="center">
5-
<img src="https://raw.githubusercontent.com/403Code/403Code/main/picture/bot-react.png">
6-
Otomatisasi Facebook Bot React dengan Google Script
5+
<img src="https://raw.githubusercontent.com/403Code/403Code/main/picture/bot-react.png">
6+
Otomatisasi Bot Reaksi Facebook dengan Google Script
77
</h4>
88
<div align="center">
99
<a href="https://github.com/403Code">
10-
<img alt="Last Commit" src="https://img.shields.io/github/last-commit/403Code/Bot-React.svg"/>
10+
<img alt="Commit Terakhir" src="https://img.shields.io/github/last-commit/403Code/Bot-React.svg"/>
1111
</a>
1212
<a href="https://github.com/403Code">
13-
<img alt="Language" src="https://img.shields.io/github/languages/count/403Code/Bot-React.svg"/>
13+
<img alt="Jumlah Bahasa" src="https://img.shields.io/github/languages/count/403Code/Bot-React.svg"/>
1414
</a>
1515
<a href="https://github.com/403Code">
16-
<img alt="Top Language" src="https://img.shields.io/github/languages/top/403Code/Bot-React.svg"/>
16+
<img alt="Bahasa Utama" src="https://img.shields.io/github/languages/top/403Code/Bot-React.svg"/>
1717
</a>
1818
<a href="https://github.com/403Code">
19-
<img alt="Repo Size" src="https://img.shields.io/github/repo-size/403Code/Bot-React.svg"/>
19+
<img alt="Ukuran Repository" src="https://img.shields.io/github/repo-size/403Code/Bot-React.svg"/>
2020
</a>
2121
<a href="https://github.com/403Code">
22-
<img alt="Stars" src="https://img.shields.io/github/stars/403Code/Bot-React.svg"/>
22+
<img alt="Bintang" src="https://img.shields.io/github/stars/403Code/Bot-React.svg"/>
2323
</a>
2424
<a href="https://github.com/403Code">
25-
<img alt="Forks" src="https://img.shields.io/github/forks/403Code/Bot-React.svg"/>
25+
<img alt="Fork" src="https://img.shields.io/github/forks/403Code/Bot-React.svg"/>
2626
</a>
2727
</div>
2828
<p align="center">
2929
Dibuat dengan ❤️ oleh <a href="https://github.com/403Code">Nanta</a>
3030
</p>
3131

32+
---
33+
3234
## 🔎 Fitur
33-
* Memberi reaksi pada postingan dengan lebih dari 1 jenis reaksi
34-
* Mengganti cookies dari pastebin atau layanan lain yang mendukung tampilan raw/plain text
35+
* Memberikan reaksi ke postingan dengan banyak jenis reaksi
36+
* Mengganti cookie dari Pastebin atau sumber raw/plain text lainnya
37+
* Opsi auto-follow (aktif/nonaktif)
38+
* 🌐 Lebih stabil dengan menggunakan `www.facebook.com`
39+
* 🔔 ![new](https://raw.githubusercontent.com/403Code/403Code/main/picture/new.gif) Integrasi Discord Webhook untuk log aktivitas
40+
41+
---
42+
43+
## 🤔 Cara Penggunaan
44+
45+
Pergi ke bagian kode berikut:
3546

36-
## 🤔 Cara Menggunakan
37-
Pergi ke bagian kode ini:
3847
```javascript
3948
const config = {
40-
cookie: "xxx",
41-
reactType: [1,16,2,3],
49+
cookie: "xxx",
50+
reactType: [1,16,2,3],
51+
webhookUrl: "xxx",
4252
};
4353
```
44-
### 🚶‍♂️‍➡️ Langkah-langkah:
45-
- Ubah `"xxx"` menjadi cookies Facebook milikmu, contohnya: `cookie: "sb=xxxxxx;datr=xxxxxxxxx;c_user=xxxxxxxx",` (jangan hapus tanda kutip ganda) atau kamu bisa menggunakan website yang menampilkan raw/plain text seperti [Pastebin](https://pastebin.com) dan gunakan seperti ini: `cookie: "https://pastebin.com/raw/xxxxxxxx",`
46-
- Ubah `reactType` sesuai reaksi (dengan React ID) yang kamu inginkan, berdasarkan tabel di bawah. Contoh: `reactType: [1,16,2,3],` (tanpa tanda kutip tunggal/ganda, dipisahkan dengan koma). Script akan mengacak antara LIKE, LOVE, WOW, dan CARE di setiap postingan. Jika hanya ingin satu reaksi, gunakan format: `reactType: [1],` yang berarti hanya reaksi LIKE yang akan dijalankan.
54+
55+
### 🚶‍♂️ Langkah-langkah:
56+
57+
- Ganti `"xxx"` pada **cookie** dengan cookie Facebook milikmu
58+
Contoh:
59+
```javascript
60+
cookie: "sb=xxxxxx;datr=xxxxxxxxx;c_user=xxxxxxxx",
61+
```
62+
(jangan hapus tanda kutip)
63+
64+
Atau gunakan link raw:
65+
```javascript
66+
cookie: "https://pastebin.com/raw/xxxxxxxx",
67+
```
68+
69+
- Atur **reactType** berdasarkan tabel di bawah
70+
Contoh:
71+
```javascript
72+
reactType: [1,16,2,3],
73+
```
74+
Ini akan memberikan reaksi LIKE, CARE, LOVE, dan WOW secara acak
75+
76+
Untuk satu jenis reaksi:
77+
```javascript
78+
reactType: [1],
79+
```
80+
81+
- Atur **webhookUrl** dengan URL webhook Discord milikmu
82+
Contoh:
83+
```javascript
84+
webhookUrl: "https://discord.com/api/webhooks/xxxx",
85+
```
86+
Ini akan mengirimkan log aktivitas ke server Discord kamu
87+
88+
---
4789

4890
## 📑 Tabel Reaksi
49-
| Nama Reaksi | React ID | Emoji Reaksi |
50-
|---------------|----------|--------------|
51-
| LIKE / SUKA | 1 | 👍 |
52-
| LOVE / SUPER | 2 ||
53-
| WOW | 3 | 😮 |
54-
| HAHA | 4 | 😆 |
55-
| SAD / SEDIH | 7 | 😢 |
56-
| ANGRY / MARAH | 8 | 😡 |
57-
| CARE / PEDULI | 16 | 🤗 |
91+
92+
| Nama Reaksi | ID Reaksi | Emoji |
93+
|-------------|-----------|-------|
94+
| SUKA | 1 | 👍 |
95+
| SUPER | 2 ||
96+
| WOW | 3 | 😮 |
97+
| HAHA | 4 | 😆 |
98+
| SEDIH | 7 | 😢 |
99+
| MARAH | 8 | 😡 |
100+
| PEDULI | 16 | 🤗 |
101+
102+
---
58103

59104
## 📲 Kontak
60105
[![Facebook](https://img.shields.io/badge/facebook-0866FF?style=for-the-badge&logo=facebook&logoColor=white)](https://www.facebook.com/dementorize)
61106
[![Telegram](https://img.shields.io/badge/telegram-26A5E4?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/Rizemary)
62107
[![Instagram](https://img.shields.io/badge/instagram-FF0069?style=for-the-badge&logo=instagram&logoColor=white)](https://instagram.com/dementorize)
63108

109+
---
110+
64111
## 💰 Dukung Saya
65112
[![BuyMeACoffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black)](https://buymeacoffee.com/zonenathan)
66113
[![PayPal](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://paypal.me/Rizemary)
67114
[![Ko-Fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/zonenathan)
68-
[![Trakteer](https://img.shields.io/badge/trakteer-BE1E2D?style=for-the-badge&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI+CjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTA0Mi4wMDAwMDBwdCIgaGVpZ2h0PSIxMDQyLjAwMDAwMHB0IiB2aWV3Qm94PSIwIDAgMTA0Mi4wMDAwMDAgMTA0Mi4wMDAwMDAiCiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij4KPG1ldGFkYXRhPgpDcmVhdGVkIGJ5IHBvdHJhY2UgMS4xNiwgd3JpdHRlbiBieSBQZXRlciBTZWxpbmdlciAyMDAxLTIwMTkKPC9tZXRhZGF0YT4KPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsMTA0Mi4wMDAwMDApIHNjYWxlKDAuMTAwMDAwLC0wLjEwMDAwMCkiCmZpbGw9IiMwMDAwMDAiIHN0cm9rZT0ibm9uZSI+CjxwYXRoIGQ9Ik00NjEzIDg3MjQgYy0yNTMgLTU1IC00NzcgLTI0OCAtNTY5IC00OTAgLTE5OSAtNTI1IDE4MSAtMTA4NCA3NDAKLTEwODQgbDk4IDAgLTYgMjYgYy0yOCAxMTEgLTI0IDI2NiA5IDM4MiA4MiAyODAgMzA2IDQ4NiA1OTYgNTQ4IDk0IDIxIDk0IDIxCjQ2IDEzOSAtNzggMTkyIC0yMzMgMzUyIC00MjIgNDM0IC0xMzIgNTggLTM0NSA3OCAtNDkyIDQ1eiIvPgo8cGF0aCBkPSJNNTU5NCA3OTgwIGMtMTM2IC0yNSAtMjYyIC05MSAtMzY0IC0xOTAgLTE4OCAtMTg0IC0yNTMgLTQ1OCAtMTcwCi03MTIgMTIgLTM1IDMyIC04MiA0NCAtMTA0IGwyMiAtMzkgNTg5IDAgNTkwIDAgMzIgNjUgYzQ0IDg5IDY1IDE4NiA2NSAzMDAgMAoyNTQgLTExOSA0NjMgLTMzOSA1OTYgLTEyMiA3MyAtMzI1IDExMCAtNDY5IDg0eiIvPgo8cGF0aCBkPSJNMzgwMSA2NzU5IGMtMTM1IC0yNyAtMjI1IC0xNDIgLTIyNSAtMjg5IDAgLTExOSA1OCAtMjE1IDE1OSAtMjY1CjM5IC0yMCA3MSAtMjAgMTQ1NSAtMjMgbDE0MTQgLTIgNTMgMjUgYzY0IDMyIDEyNiAxMDAgMTQ3IDE2MiAyMCA2MCAyMCAxNDcgMAoyMDYgLTIyIDY0IC05MSAxMzkgLTE1NiAxNjggbC01MyAyNCAtMTM3NSAxIGMtNzU2IDEgLTEzOTUgLTIgLTE0MTkgLTd6Ii8+CjxwYXRoIGQ9Ik0zNTEwIDU4ODUgbDAgLTE2NSAtNDIgLTIxIGMtMjEzIC0xMDcgLTM5MyAtMzQxIC00NjQgLTYwNCAtMTggLTY3Ci0xOSAtMTI3IC0xOSAtMTQ1MCAwIC0xMzIzIDEgLTEzODMgMTkgLTE0NTAgOTQgLTM0NyAzNDMgLTU5OSA2ODUgLTY5NCBsOTYKLTI2IDE0MjAgMCAxNDIwIDAgOTAgMjMgYzE5NyA1MSAzOTEgMTc1IDUxNCAzMjkgNzcgOTcgMTUzIDI0OSAxODMgMzY4IGwyMwo5MCAwIDEzNjAgMCAxMzYwIC0yMyA5MCBjLTY2IDI2MyAtMjUwIDQ5NSAtNDg5IDYxOCBsLTgzIDQyIDAgMTQ4IDAgMTQ3Ci0xNjY1IDAgLTE2NjUgMCAwIC0xNjV6IG0yOTAwIC0zNjggbDAgLTEwMyA5OCAtMTkgYzE3NyAtMzMgMjU5IC03MiAzNTMgLTE2Nwo2NSAtNjYgMTIyIC0xNzQgMTM5IC0yNjMgOCAtNDMgMTAgLTQzMCA4IC0xMzU1IGwtMyAtMTI5NSAtMjMgLTU5IGMtNTggLTE1MwotMTc1IC0yNzAgLTMyNyAtMzI4IGwtNjAgLTIzIC0xMzU4IC0zIGMtMTE5MiAtMiAtMTM2NSAwIC0xNDI0IDEzIC0xNzkgNDIKLTMyNyAxODIgLTM4MyAzNjQgLTE5IDYxIC0yMCA5OSAtMjAgMTM2NSAwIDEwNTIgMyAxMzExIDE0IDEzNTEgMjQgOTAgNjggMTY3CjEzNiAyMzUgNzggNzggMTUyIDExOSAyODMgMTU1IGw5NyAyOCAwIDEwMyAwIDEwNCAxMjM1IDAgMTIzNSAwIDAgLTEwM3oiLz4KPHBhdGggZD0iTTQ1NTggNDYxMCBjLTI3IC01IC03NyAtMTggLTExMiAtMzAgLTE4MCAtNjAgLTM0MSAtMjM1IC0zOTEgLTQyNQotMTkgLTc2IC0yMCAtMjQyIDAgLTMyMCAyMiAtODkgODggLTIxNSAxNTQgLTI5NyAzMyAtNDAgMjY5IC0yODIgNTI1IC01MzgKbDQ2NiAtNDY1IDQ3NSA0NzUgYzI2MiAyNjEgNDkzIDQ5OCA1MTUgNTI1IDY0IDgzIDEwNiAxNjAgMTM2IDI1MiAyNSA3NyAyOQoxMDMgMjkgMjAzIC0xIDk5IC00IDEyNiAtMjggMTk1IC03MiAyMDUgLTIzOSAzNTkgLTQ0NyA0MTEgLTk1IDI0IC0yNjEgMTUKLTM1OCAtMTkgLTg5IC0zMSAtMTg3IC04OCAtMjY2IC0xNTYgbC01OSAtNTAgLTU0IDUwIGMtMTYyIDE0NyAtMzkxIDIyMSAtNTg1CjE4OXoiLz4KPC9nPgo8L3N2Zz4K)](https://trakteer.id/d.izzy)
69-
[![Saweria](https://img.shields.io/badge/saweria-FAAE2B?style=for-the-badge&logo=aiqfome)](https://saweria.co/zeryuu)
70-
[![Nyawer](https://img.shields.io/badge/nyawer-D894D8?style=for-the-badge&logo=angellist)](https://nyawer.co/zeryuu)
115+
[![Trakteer](https://img.shields.io/badge/trakteer-BE1E2D?style=for-the-badge)](https://trakteer.id/d.izzy)
116+
[![Saweria](https://img.shields.io/badge/saweria-FAAE2B?style=for-the-badge)](https://saweria.co/zeryuu)
117+
[![Nyawer](https://img.shields.io/badge/nyawer-D894D8?style=for-the-badge)](https://nyawer.co/zeryuu)
118+
119+
---
71120

72-
## 🌐 Readme lain
73-
![](https://img.shields.io/badge/Readme-Indonesia%20(Sekarang)-blue) [![](https://img.shields.io/badge/Readme-English-blue)](https://github.com/403Code/Bot-React/blob/main/README.md)
121+
## 🌐 Readme Lainnya
122+
![](https://img.shields.io/badge/Readme-English-blue) [![](https://img.shields.io/badge/Readme-Indonesian%20(Sekarang)-blue)](https://github.com/403Code/Bot-React/blob/main/README.ID.md)

0 commit comments

Comments
 (0)