Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Fxc7 authored Jan 20, 2021
1 parent 0fb9af6 commit 6199be2
Show file tree
Hide file tree
Showing 6 changed files with 703 additions and 0 deletions.
57 changes: 57 additions & 0 deletions Fxc7/bahasa.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
const bahasa = (prefix) => {
return `
List Bahasa Untuk Command *${prefix}tts*
af: Afrikaans
sq: Albanian
ar: Arabic
hy: Armenian
ca: Catalan
zh: Chinese
zh-cn: Chinese (Mandarin/China)
zh-tw: Chinese (Mandarin/Taiwan)
zh-yue: Chinese (Cantonese)
hr: Croatian
cs: Czech
da: Danish
nl: Dutch
en: English
en-au: English (Australia)
en-uk: English (United Kingdom)
en-us: English (United States)
eo: Esperanto
fi: Finnish
fr: French
de: German
el: Greek
ht: Haitian Creole
hi: Hindi
hu: Hungarian
is: Icelandic
id: Indonesian
it: Italian
ja: Japanese
ko: Korean
la: Latin
lv: Latvian
mk: Macedonian
no: Norwegian
pl: Polish
pt: Portuguese
pt-br: Portuguese (Brazil)
ro: Romanian
ru: Russian
sr: Serbian
sk: Slovak
es: Spanish
es-es: Spanish (Spain)
es-us: Spanish (United States)
sw: Swahili
sv: Swedish
ta: Tamil
th: Thai
tr: Turkish
vi: Vietnamese
cy: Welsh
`
}
exports.bahasa = bahasa
25 changes: 25 additions & 0 deletions Fxc7/brainly.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
const brainly = require('brainly-scraper')

module.exports = BrainlySearch = (pertanyaan, jumlah, cb) => {
brainly(pertanyaan.toString(),Number(jumlah)).then((res) => {
let brainlyResult = []
res.data.forEach((ask) => {
let opt = {
pertanyaan: ask.pertanyaan,
fotoPertanyaan: ask.questionMedia
}
ask.jawaban.forEach(answer => {
opt.jawaban = {
judulJawaban: answer.text,
fotoJawaban: answer.media
}
})
brainlyResult.push(opt)
})
return brainlyResult
}).then(x => {
cb(x)
}).catch(err => {
console.log(err.error)
})
}
28 changes: 28 additions & 0 deletions Fxc7/bucin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Fxc7/donasi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
const donasi = (Ig, name) => {
return `
┏━━━━━━━━━━━━━━━━━━━━
┃ 𝗗𝗢𝗡𝗔𝗦𝗜
┣━━━━━━━━━━━━━━━━━━━━
┣━⊱ *DONASI SEIKHLASNYA:)* ❉⊰━━✿
┣━⊱ *OVO*
┣⊱ 08311800241
┣━⊱ *PULSA*
┣⊱ 08311800241
┣━━━━━━━━━━━━━━━━━━━━
┃ *BOT BY ${name}*
┗━━━━━━━━━━━━━━━━━━━━
Note:
Jika Gamau Donasi Setidaknya Follow IG Ngab:D
Kalo Dah Donasi Silahkan Invit Di Group Kalian:)
Makasih:)
${Ig}
`
}

exports.donasi = donasi
Loading

0 comments on commit 6199be2

Please sign in to comment.