├── Dockerfile ├── EveloCodeServer.js ├── LICENSE ├── Procfile ├── README.md ├── RedDragon.js ├── RentBot.js ├── account-id.js ├── app.json ├── autoreply.js ├── com.reddragon ├── 29c273f0-d83a-441f-b5d1-12961ccc15fd.webp ├── audio │ ├── 110.mp3 │ ├── 111.mp3 │ ├── 112.mp3 │ ├── 113.mp3 │ ├── 114.mp3 │ ├── 115.mp3 │ ├── 116.mp3 │ ├── Gm.mp3 │ ├── Gn.mp3 │ └── I Love You.mp3 ├── database │ ├── xeonimage.json │ ├── xeonsticker.json │ ├── xeonvideo.json │ └── xeonvn.json ├── font │ ├── font-gue.ttf │ └── nulis.ttf ├── image │ ├── 0screenerror.jpg │ ├── 1screenerror.jpg │ ├── 2screenerror.jpg │ ├── 3screenerror.jpg │ ├── 4screenerror.jpg │ ├── 5screenerror.jpg │ ├── 6screenerror.jpg │ ├── 7screenerror.jpg │ ├── 8screenerror.jpg │ ├── 9screenerror.jpg │ ├── antilink.jpg │ ├── bluescreenerror.jpg │ ├── goodbye.jpg │ ├── redscreenerror.jpg │ └── welcome.jpg ├── sticker │ ├── STK-20230228-WA0010.webp │ ├── STK-20230929-WA0026.webp │ ├── amo.webp │ ├── heart.webp │ ├── hehe.webp │ ├── hii.webp │ ├── hm.webp │ ├── hmm.webp │ ├── phonehate.webp │ ├── shot.webp │ └── smile.webp └── theme │ └── sticker_reply │ ├── admin.webp │ ├── botadmin.webp │ ├── group.webp │ ├── owner.webp │ ├── private.webp │ └── wait.webp ├── database ├── antilinkall.json ├── antilinkfacebook.json ├── antilinkgc.json ├── antilinkinstagram.json ├── antilinktelegram.json ├── antilinktiktok.json ├── antilinktwitter.json ├── antilinkytchannel.json ├── antilinkytvideo.json ├── antitoxic.json ├── antivirus.json ├── antiwame.json ├── autosticker.json ├── bad.json ├── database.json ├── nsfw.json ├── owner.json ├── premium.json └── user.json ├── index.html ├── index.js ├── lib ├── TelegraPH.js ├── antispam.js ├── cloudDBAdapter.js ├── color.js ├── converter.js ├── exif.js ├── listmenu.js ├── loader.js ├── lowdb │ ├── CAF │ ├── Low.d.ts │ ├── Low.js │ ├── LowSync.d.ts │ ├── LowSync.js │ ├── MissingAdapterError.d.ts │ ├── MissingAdapterError.js │ ├── adapters │ │ ├── CAF │ │ ├── JSONFile.d.ts │ │ ├── JSONFile.js │ │ ├── JSONFileSync.d.ts │ │ ├── JSONFileSync.js │ │ ├── LocalStorage.d.ts │ │ ├── LocalStorage.js │ │ ├── Memory.d.ts │ │ ├── Memory.js │ │ ├── MemorySync.d.ts │ │ ├── MemorySync.js │ │ ├── TextFile.d.ts │ │ ├── TextFile.js │ │ ├── TextFileSync.d.ts │ │ └── TextFileSync.js │ ├── index.d.ts │ └── index.js ├── math.js ├── mediafire.js ├── menfess.js ├── mongoDB.js ├── myfunc.js ├── myfunc2.js ├── remini.js ├── scraper.js ├── scraper.js.bak ├── scraperW.js ├── scraperZ.js ├── spinner.js ├── spotify.js ├── tictactoe.d.ts ├── tictactoe.js ├── tiktok.js ├── uploader.js └── ytdl2.js ├── module.js ├── package.json ├── replit.nix ├── scrape ├── XeonIgImg.js ├── XeonInstaMp4.js ├── XeonTwitter.js ├── binary.js ├── facebook_evelocode.js ├── ffstalk.js ├── githubstalk.js ├── mlstalk.js ├── npmstalk.js ├── photooxy.js ├── saveform.js ├── savefrom.js ├── scraper.js ├── scraperr.js ├── scraperrr.js ├── textpro.js ├── textpro2.js ├── tiktok.js ├── tiktok_evelocode.js ├── upload.js ├── youtube_evelocode.js ├── yt-search │ ├── README.md │ ├── bin │ │ ├── cli.js │ │ ├── mpv_audio.sh │ │ ├── mpv_video.sh │ │ └── xeon.js │ ├── dist │ │ ├── xeon.js │ │ └── yt-search.js │ ├── package.json │ └── xeon.js ├── yt.js └── ythd.js ├── settings.js └── 📤UPLOAD creds.json HERE📤 /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/Dockerfile -------------------------------------------------------------------------------- /EveloCodeServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/EveloCodeServer.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/README.md -------------------------------------------------------------------------------- /RedDragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/RedDragon.js -------------------------------------------------------------------------------- /RentBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/RentBot.js -------------------------------------------------------------------------------- /account-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/account-id.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/app.json -------------------------------------------------------------------------------- /autoreply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/autoreply.js -------------------------------------------------------------------------------- /com.reddragon/29c273f0-d83a-441f-b5d1-12961ccc15fd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/29c273f0-d83a-441f-b5d1-12961ccc15fd.webp -------------------------------------------------------------------------------- /com.reddragon/audio/110.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/110.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/111.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/111.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/112.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/112.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/113.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/113.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/114.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/114.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/115.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/115.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/116.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/116.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/Gm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/Gm.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/Gn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/Gn.mp3 -------------------------------------------------------------------------------- /com.reddragon/audio/I Love You.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/audio/I Love You.mp3 -------------------------------------------------------------------------------- /com.reddragon/database/xeonimage.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /com.reddragon/database/xeonsticker.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /com.reddragon/database/xeonvideo.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /com.reddragon/database/xeonvn.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /com.reddragon/font/font-gue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/font/font-gue.ttf -------------------------------------------------------------------------------- /com.reddragon/font/nulis.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/font/nulis.ttf -------------------------------------------------------------------------------- /com.reddragon/image/0screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/0screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/1screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/1screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/2screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/2screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/3screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/3screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/4screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/4screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/5screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/5screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/6screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/6screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/7screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/7screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/8screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/8screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/9screenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/9screenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/antilink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/antilink.jpg -------------------------------------------------------------------------------- /com.reddragon/image/bluescreenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/bluescreenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/goodbye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/goodbye.jpg -------------------------------------------------------------------------------- /com.reddragon/image/redscreenerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/redscreenerror.jpg -------------------------------------------------------------------------------- /com.reddragon/image/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/image/welcome.jpg -------------------------------------------------------------------------------- /com.reddragon/sticker/STK-20230228-WA0010.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/STK-20230228-WA0010.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/STK-20230929-WA0026.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/STK-20230929-WA0026.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/amo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/amo.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/heart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/heart.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/hehe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/hehe.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/hii.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/hii.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/hm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/hm.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/hmm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/hmm.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/phonehate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/phonehate.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/shot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/shot.webp -------------------------------------------------------------------------------- /com.reddragon/sticker/smile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/sticker/smile.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/admin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/admin.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/botadmin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/botadmin.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/group.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/group.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/owner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/owner.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/private.webp -------------------------------------------------------------------------------- /com.reddragon/theme/sticker_reply/wait.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/com.reddragon/theme/sticker_reply/wait.webp -------------------------------------------------------------------------------- /database/antilinkall.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinkfacebook.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinkgc.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinkinstagram.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinktelegram.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinktiktok.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinktwitter.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinkytchannel.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antilinkytvideo.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antitoxic.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antivirus.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/antiwame.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/autosticker.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/bad.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/database.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /database/nsfw.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/owner.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/premium.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/user.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/index.js -------------------------------------------------------------------------------- /lib/TelegraPH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/TelegraPH.js -------------------------------------------------------------------------------- /lib/antispam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/antispam.js -------------------------------------------------------------------------------- /lib/cloudDBAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/cloudDBAdapter.js -------------------------------------------------------------------------------- /lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/color.js -------------------------------------------------------------------------------- /lib/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/converter.js -------------------------------------------------------------------------------- /lib/exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/exif.js -------------------------------------------------------------------------------- /lib/listmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/listmenu.js -------------------------------------------------------------------------------- /lib/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/loader.js -------------------------------------------------------------------------------- /lib/lowdb/CAF: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/lowdb/Low.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/Low.d.ts -------------------------------------------------------------------------------- /lib/lowdb/Low.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/Low.js -------------------------------------------------------------------------------- /lib/lowdb/LowSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/LowSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/LowSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/LowSync.js -------------------------------------------------------------------------------- /lib/lowdb/MissingAdapterError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/MissingAdapterError.d.ts -------------------------------------------------------------------------------- /lib/lowdb/MissingAdapterError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/MissingAdapterError.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/CAF: -------------------------------------------------------------------------------- 1 | >\\\< 2 | -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/JSONFile.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/JSONFile.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFileSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/JSONFileSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFileSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/JSONFileSync.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/LocalStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/LocalStorage.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/LocalStorage.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/Memory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/Memory.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/Memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/Memory.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/MemorySync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/MemorySync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/MemorySync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/MemorySync.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/TextFile.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/TextFile.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFileSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/TextFileSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFileSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/adapters/TextFileSync.js -------------------------------------------------------------------------------- /lib/lowdb/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/index.d.ts -------------------------------------------------------------------------------- /lib/lowdb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/lowdb/index.js -------------------------------------------------------------------------------- /lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/math.js -------------------------------------------------------------------------------- /lib/mediafire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/mediafire.js -------------------------------------------------------------------------------- /lib/menfess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/menfess.js -------------------------------------------------------------------------------- /lib/mongoDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/mongoDB.js -------------------------------------------------------------------------------- /lib/myfunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/myfunc.js -------------------------------------------------------------------------------- /lib/myfunc2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/myfunc2.js -------------------------------------------------------------------------------- /lib/remini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/remini.js -------------------------------------------------------------------------------- /lib/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/scraper.js -------------------------------------------------------------------------------- /lib/scraper.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/scraper.js.bak -------------------------------------------------------------------------------- /lib/scraperW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/scraperW.js -------------------------------------------------------------------------------- /lib/scraperZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/scraperZ.js -------------------------------------------------------------------------------- /lib/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/spinner.js -------------------------------------------------------------------------------- /lib/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/spotify.js -------------------------------------------------------------------------------- /lib/tictactoe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/tictactoe.d.ts -------------------------------------------------------------------------------- /lib/tictactoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/tictactoe.js -------------------------------------------------------------------------------- /lib/tiktok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/tiktok.js -------------------------------------------------------------------------------- /lib/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/uploader.js -------------------------------------------------------------------------------- /lib/ytdl2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/lib/ytdl2.js -------------------------------------------------------------------------------- /module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/package.json -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/replit.nix -------------------------------------------------------------------------------- /scrape/XeonIgImg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/XeonIgImg.js -------------------------------------------------------------------------------- /scrape/XeonInstaMp4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/XeonInstaMp4.js -------------------------------------------------------------------------------- /scrape/XeonTwitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/XeonTwitter.js -------------------------------------------------------------------------------- /scrape/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/binary.js -------------------------------------------------------------------------------- /scrape/facebook_evelocode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/facebook_evelocode.js -------------------------------------------------------------------------------- /scrape/ffstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/ffstalk.js -------------------------------------------------------------------------------- /scrape/githubstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/githubstalk.js -------------------------------------------------------------------------------- /scrape/mlstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/mlstalk.js -------------------------------------------------------------------------------- /scrape/npmstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/npmstalk.js -------------------------------------------------------------------------------- /scrape/photooxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/photooxy.js -------------------------------------------------------------------------------- /scrape/saveform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/saveform.js -------------------------------------------------------------------------------- /scrape/savefrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/savefrom.js -------------------------------------------------------------------------------- /scrape/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/scraper.js -------------------------------------------------------------------------------- /scrape/scraperr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/scraperr.js -------------------------------------------------------------------------------- /scrape/scraperrr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/scraperrr.js -------------------------------------------------------------------------------- /scrape/textpro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/textpro.js -------------------------------------------------------------------------------- /scrape/textpro2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/textpro2.js -------------------------------------------------------------------------------- /scrape/tiktok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/tiktok.js -------------------------------------------------------------------------------- /scrape/tiktok_evelocode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/tiktok_evelocode.js -------------------------------------------------------------------------------- /scrape/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/upload.js -------------------------------------------------------------------------------- /scrape/youtube_evelocode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/youtube_evelocode.js -------------------------------------------------------------------------------- /scrape/yt-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/README.md -------------------------------------------------------------------------------- /scrape/yt-search/bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/bin/cli.js -------------------------------------------------------------------------------- /scrape/yt-search/bin/mpv_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/bin/mpv_audio.sh -------------------------------------------------------------------------------- /scrape/yt-search/bin/mpv_video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/bin/mpv_video.sh -------------------------------------------------------------------------------- /scrape/yt-search/bin/xeon.js: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cheems Bot Multi Device " 3 | } -------------------------------------------------------------------------------- /scrape/yt-search/dist/xeon.js: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cheems Bot Multi Device " 3 | } -------------------------------------------------------------------------------- /scrape/yt-search/dist/yt-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/dist/yt-search.js -------------------------------------------------------------------------------- /scrape/yt-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt-search/package.json -------------------------------------------------------------------------------- /scrape/yt-search/xeon.js: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cheems Bot Multi Device " 3 | } -------------------------------------------------------------------------------- /scrape/yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/yt.js -------------------------------------------------------------------------------- /scrape/ythd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/scrape/ythd.js -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabhasha2006/RedDragon/HEAD/settings.js -------------------------------------------------------------------------------- /📤UPLOAD creds.json HERE📤: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------