├── Global ├── Assets │ ├── AbyssinicaSIL-Regular.ttf │ ├── DINNextLTPro-Bold.ttf │ ├── Helvetica.ttf │ ├── HelveticaBold.ttf │ ├── KeepCalm-Medium.ttf │ ├── LuckiestGuy-Regular.ttf │ ├── Manrope-Bold.ttf │ ├── Manrope-Regular.ttf │ ├── MarlinGeo-Black.otf │ ├── NotoEmoji-Regular.ttf │ ├── NotoSansSymbols2-Regular.ttf │ ├── Poppins-Bold.ttf │ ├── Poppins-Regular.ttf │ ├── Roboto.ttf │ ├── Segoe UI Bold Italic.ttf │ ├── Segoe UI Bold.ttf │ ├── Segoe UI Italic.ttf │ ├── Segoe UI.ttf │ ├── SketchMatch.ttf │ ├── Vante.otf │ └── theboldfont.ttf ├── Examples │ ├── Command.js │ └── Event.js ├── Helpers │ ├── Dates.js │ ├── Extenders │ │ ├── Events.js │ │ └── Prototypes.js │ ├── Logger.js │ ├── Numbers.js │ ├── Replys.js │ └── Utils.js ├── Images │ ├── Background1.jpg │ ├── Background2.jpg │ ├── Background3.jpg │ ├── Background4.jpg │ ├── Background5.jpg │ └── Spotify.png ├── Models │ ├── CameraStat.js │ ├── CameraUserChannel.js │ ├── JoinedAt.js │ ├── JoinedAt2.js │ ├── JoinedAt3.js │ ├── MessageStat.js │ ├── MessageUserChannel.js │ ├── StreamerStat.js │ ├── StreamerUserChannel.js │ ├── VoiceStat.js │ ├── VoiceUserChannel.js │ └── index.js ├── Plugins │ └── Spotify │ │ ├── Spotify.js │ │ └── Util.js ├── Schemas │ ├── TaskRole.js │ ├── TaskUser.js │ ├── afk.js │ ├── bannedTag.js │ ├── boosterpanel.js │ ├── ceza.js │ ├── cezapuan.js │ ├── channelLogData.js │ ├── chatFriend.js │ ├── ekonomi.js │ ├── forceBans.js │ ├── friendShip.js │ ├── inviteMember.js │ ├── inviter.js │ ├── kanalveridb.js │ ├── level.js │ ├── mainleaderboard.js │ ├── names.js │ ├── otokayit.js │ ├── penals.js │ ├── registerStats.js │ ├── rolveridb.js │ ├── snipe.js │ ├── specialRoom.js │ ├── specialcommand.js │ ├── taggeds.js │ ├── tasks.js │ ├── toplams.js │ ├── userTask.js │ ├── uyarisayi.js │ ├── voiceUserParent.js │ └── yetkialdir.js ├── Settings │ ├── AyarName.js │ ├── Emojis.json │ ├── Setup.json │ ├── System.js │ ├── giveaways.json │ └── messages.js └── Utils │ ├── Prototype.js │ └── Reply.js ├── LICENSE ├── README.md ├── Server ├── Ertu-Guard │ ├── Additions │ │ ├── Distributors.js │ │ ├── _console.additions.js │ │ └── _general.additions.js │ ├── Guard │ │ ├── _events │ │ │ ├── Roles │ │ │ │ ├── RoleCreate.js │ │ │ │ ├── RoleDelete.js │ │ │ │ ├── RoleUpdate.js │ │ │ │ └── memberRoleAdd.js │ │ │ └── _client │ │ │ │ ├── RoleDelete.js │ │ │ │ └── ready.js │ │ └── main.js │ ├── GuardThree │ │ ├── _events │ │ │ ├── Database │ │ │ │ └── Backup.js │ │ │ ├── Members │ │ │ │ ├── GuildMemberBan.js │ │ │ │ └── GuildMemberUnban.js │ │ │ ├── _Emoji │ │ │ │ ├── EmojiCreated.js │ │ │ │ ├── EmojiDeleted.js │ │ │ │ └── EmojiUpdate.js │ │ │ └── _client │ │ │ │ └── ready.js │ │ └── main.js │ ├── GuardTwo │ │ ├── _events │ │ │ ├── Channels │ │ │ │ ├── ChannelCreate.js │ │ │ │ ├── ChannelDelete.js │ │ │ │ └── ChannelUpdate.js │ │ │ ├── Guild │ │ │ │ ├── GuildUpdate.js │ │ │ │ ├── GuildÿntegrationCreate.js │ │ │ │ ├── GuildÿntegrationDelete.js │ │ │ │ └── GuildÿntegrationUpdate.js │ │ │ └── _client │ │ │ │ └── ready.js │ │ └── main.js │ ├── Schemas │ │ ├── Backup │ │ │ ├── Guild.Category.Channels.js │ │ │ ├── Guild.Deleted.Roles.js │ │ │ ├── Guild.Roles.js │ │ │ ├── Guild.Text.Channels.js │ │ │ └── Guild.Voice.Channels.js │ │ ├── Guard.js │ │ ├── guardPenalty.js │ │ ├── rolePermissions.js │ │ └── webguard.js │ ├── Structures │ │ ├── Default.Clients.js │ │ └── Default.Events.js │ └── UrlSpammer │ │ └── approval.js ├── Ertu-Main │ ├── Registery │ │ ├── Ertu.js │ │ └── src │ │ │ ├── DataBase │ │ │ └── Mongoose.js │ │ │ ├── Events │ │ │ ├── Client │ │ │ │ └── Ready.js │ │ │ └── Register │ │ │ │ ├── GuildMemberAdd.js │ │ │ │ ├── GuildMemberRemove.js │ │ │ │ ├── InvıteCreate.js │ │ │ │ ├── InvıteDelete.js │ │ │ │ └── UserUpdate.js │ │ │ └── Structures │ │ │ └── Ertu.js │ └── Supervisor │ │ ├── Ertu.js │ │ ├── fivedb.yml │ │ └── src │ │ ├── Commands │ │ ├── Admin │ │ │ ├── AllMove.js │ │ │ ├── AuthoritiesCount.js │ │ │ ├── ChannelLog.js │ │ │ ├── Control.js │ │ │ ├── Distribute.js │ │ │ ├── GiveRole.js │ │ │ ├── Lock.js │ │ │ ├── Meeting.js │ │ │ ├── RoleInfo.js │ │ │ ├── RoleLog.js │ │ │ ├── ServerControl.js │ │ │ ├── TagCount.js │ │ │ └── Yoklama.js │ │ ├── Economy │ │ │ ├── AddBalance.js │ │ │ ├── CoinFlip.js │ │ │ ├── Daily.js │ │ │ ├── Divorce.js │ │ │ ├── HeadsOrTails.js │ │ │ ├── Marry.js │ │ │ ├── Money.js │ │ │ ├── RemoveBalance.js │ │ │ ├── SendMoney.js │ │ │ ├── Shop.js │ │ │ ├── Slot.js │ │ │ └── TopCoin.js │ │ ├── Global │ │ │ ├── Activity.js │ │ │ ├── Afk.js │ │ │ ├── Avatar.js │ │ │ ├── Banner.js │ │ │ ├── Booster.js │ │ │ ├── Help.js │ │ │ ├── Link.js │ │ │ ├── Me.js │ │ │ ├── Move.js │ │ │ ├── Pull.js │ │ │ ├── Ship.js │ │ │ ├── Spotify.js │ │ │ └── İltifat.js │ │ ├── Guard │ │ │ ├── Audit.js │ │ │ ├── GuardSicil.js │ │ │ ├── Panel.js │ │ │ ├── Safe.js │ │ │ └── WhiteList.js │ │ ├── Moderation │ │ │ ├── Ads.js │ │ │ ├── AllMute.js │ │ │ ├── AllUnMute.js │ │ │ ├── Ban.js │ │ │ ├── BanList.js │ │ │ ├── BannedTag.js │ │ │ ├── ForceBan.js │ │ │ ├── Jail.js │ │ │ ├── Mute.js │ │ │ ├── PenalPoint.js │ │ │ ├── PenalSorgu.js │ │ │ ├── Sicil.js │ │ │ ├── UnForceBan.js │ │ │ ├── UnJail.js │ │ │ ├── UnMute.js │ │ │ ├── Unban.js │ │ │ ├── VMute.js │ │ │ ├── Warn.js │ │ │ ├── Warnings.js │ │ │ └── unSuspend.js │ │ ├── Rank │ │ │ ├── EndAuthorities.js │ │ │ ├── GiveAuthorities.js │ │ │ └── MyAuthorities.js │ │ ├── Register │ │ │ ├── Disconnect.js │ │ │ ├── Name.js │ │ │ ├── Names.js │ │ │ ├── Register.js │ │ │ ├── RegisterStat.js │ │ │ ├── TopTeyit.js │ │ │ └── Unregistered.js │ │ ├── Root │ │ │ ├── BanAf.js │ │ │ ├── BotPanel.js │ │ │ ├── Eval.js │ │ │ ├── Giveaway.js │ │ │ ├── Kisayollar.js │ │ │ ├── Leaderboard.js │ │ │ ├── Menu.js │ │ │ ├── PM2.js │ │ │ ├── PenalButton.js │ │ │ ├── Ping.js │ │ │ ├── Restart.js │ │ │ ├── SecretRoom.js │ │ │ ├── Setup.js │ │ │ ├── SpecialCommand.js │ │ │ ├── TagliAlim.js │ │ │ ├── UploadEmoji.js │ │ │ ├── UserPanel.js │ │ │ └── Write.js │ │ ├── Staffs │ │ │ ├── Count.js │ │ │ ├── Delete.js │ │ │ ├── Snipe.js │ │ │ └── VoiceControl.js │ │ └── Statistics │ │ │ ├── InvıteStat.js │ │ │ ├── LevelStat.js │ │ │ ├── RoleStat.js │ │ │ ├── TopCamera.js │ │ │ ├── TopStat.js │ │ │ ├── TopStream.js │ │ │ └── UserStat.js │ │ ├── DataBase │ │ └── Mongoose.js │ │ ├── Events │ │ ├── Client │ │ │ ├── InteractionCreate.js │ │ │ ├── MessageHandler.js │ │ │ └── Ready.js │ │ ├── Guard │ │ │ └── ChatGuard.js │ │ ├── Moderation │ │ │ ├── CezaKontrol.js │ │ │ ├── Chat.js │ │ │ ├── GuildMemberBoost.On.js │ │ │ ├── GuildMemberBoost.js │ │ │ ├── KanalLog.js │ │ │ ├── MessageDelete.js │ │ │ ├── MessageEdit.js │ │ │ ├── RolLog.js │ │ │ ├── SpecialCommand.js │ │ │ └── İltifat.js │ │ └── Stat │ │ │ ├── CameraStat.js │ │ │ ├── FriendShipStat.js │ │ │ ├── LevelMessage.js │ │ │ ├── MessageStat.js │ │ │ ├── ResetStats.js │ │ │ ├── StreamerStats.js │ │ │ ├── VoiceLogs.js │ │ │ └── VoiceStat.js │ │ ├── Extras │ │ └── GetTools.js │ │ └── Structures │ │ ├── Canvas.Functions.js │ │ ├── Classes.js │ │ └── Ertu.js └── Ertu-Welcome │ ├── System.js │ ├── ertu.js │ ├── ertu.mp3 │ └── ertucuk.js ├── ecosystem.config.js ├── package.json ├── restart.bat ├── start.bat └── stop.bat /Global/Assets/AbyssinicaSIL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/AbyssinicaSIL-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/DINNextLTPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/DINNextLTPro-Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Helvetica.ttf -------------------------------------------------------------------------------- /Global/Assets/HelveticaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/HelveticaBold.ttf -------------------------------------------------------------------------------- /Global/Assets/KeepCalm-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/KeepCalm-Medium.ttf -------------------------------------------------------------------------------- /Global/Assets/LuckiestGuy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/LuckiestGuy-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Manrope-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Manrope-Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Manrope-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/MarlinGeo-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/MarlinGeo-Black.otf -------------------------------------------------------------------------------- /Global/Assets/NotoEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/NotoEmoji-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/NotoSansSymbols2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/NotoSansSymbols2-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Poppins-Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Poppins-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Roboto.ttf -------------------------------------------------------------------------------- /Global/Assets/Segoe UI Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Segoe UI Bold Italic.ttf -------------------------------------------------------------------------------- /Global/Assets/Segoe UI Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Segoe UI Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Segoe UI Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Segoe UI Italic.ttf -------------------------------------------------------------------------------- /Global/Assets/Segoe UI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Segoe UI.ttf -------------------------------------------------------------------------------- /Global/Assets/SketchMatch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/SketchMatch.ttf -------------------------------------------------------------------------------- /Global/Assets/Vante.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/Vante.otf -------------------------------------------------------------------------------- /Global/Assets/theboldfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Assets/theboldfont.ttf -------------------------------------------------------------------------------- /Global/Examples/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Examples/Command.js -------------------------------------------------------------------------------- /Global/Examples/Event.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = async () => { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /Global/Helpers/Dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Dates.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Extenders/Events.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Prototypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Extenders/Prototypes.js -------------------------------------------------------------------------------- /Global/Helpers/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Logger.js -------------------------------------------------------------------------------- /Global/Helpers/Numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Numbers.js -------------------------------------------------------------------------------- /Global/Helpers/Replys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Replys.js -------------------------------------------------------------------------------- /Global/Helpers/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Helpers/Utils.js -------------------------------------------------------------------------------- /Global/Images/Background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Background1.jpg -------------------------------------------------------------------------------- /Global/Images/Background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Background2.jpg -------------------------------------------------------------------------------- /Global/Images/Background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Background3.jpg -------------------------------------------------------------------------------- /Global/Images/Background4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Background4.jpg -------------------------------------------------------------------------------- /Global/Images/Background5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Background5.jpg -------------------------------------------------------------------------------- /Global/Images/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Images/Spotify.png -------------------------------------------------------------------------------- /Global/Models/CameraStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/CameraStat.js -------------------------------------------------------------------------------- /Global/Models/CameraUserChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/CameraUserChannel.js -------------------------------------------------------------------------------- /Global/Models/JoinedAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/JoinedAt.js -------------------------------------------------------------------------------- /Global/Models/JoinedAt2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/JoinedAt2.js -------------------------------------------------------------------------------- /Global/Models/JoinedAt3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/JoinedAt3.js -------------------------------------------------------------------------------- /Global/Models/MessageStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/MessageStat.js -------------------------------------------------------------------------------- /Global/Models/MessageUserChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/MessageUserChannel.js -------------------------------------------------------------------------------- /Global/Models/StreamerStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/StreamerStat.js -------------------------------------------------------------------------------- /Global/Models/StreamerUserChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/StreamerUserChannel.js -------------------------------------------------------------------------------- /Global/Models/VoiceStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/VoiceStat.js -------------------------------------------------------------------------------- /Global/Models/VoiceUserChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/VoiceUserChannel.js -------------------------------------------------------------------------------- /Global/Models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Models/index.js -------------------------------------------------------------------------------- /Global/Plugins/Spotify/Spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Plugins/Spotify/Spotify.js -------------------------------------------------------------------------------- /Global/Plugins/Spotify/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Plugins/Spotify/Util.js -------------------------------------------------------------------------------- /Global/Schemas/TaskRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/TaskRole.js -------------------------------------------------------------------------------- /Global/Schemas/TaskUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/TaskUser.js -------------------------------------------------------------------------------- /Global/Schemas/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/afk.js -------------------------------------------------------------------------------- /Global/Schemas/bannedTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/bannedTag.js -------------------------------------------------------------------------------- /Global/Schemas/boosterpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/boosterpanel.js -------------------------------------------------------------------------------- /Global/Schemas/ceza.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/ceza.js -------------------------------------------------------------------------------- /Global/Schemas/cezapuan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/cezapuan.js -------------------------------------------------------------------------------- /Global/Schemas/channelLogData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/channelLogData.js -------------------------------------------------------------------------------- /Global/Schemas/chatFriend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/chatFriend.js -------------------------------------------------------------------------------- /Global/Schemas/ekonomi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/ekonomi.js -------------------------------------------------------------------------------- /Global/Schemas/forceBans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/forceBans.js -------------------------------------------------------------------------------- /Global/Schemas/friendShip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/friendShip.js -------------------------------------------------------------------------------- /Global/Schemas/inviteMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/inviteMember.js -------------------------------------------------------------------------------- /Global/Schemas/inviter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/inviter.js -------------------------------------------------------------------------------- /Global/Schemas/kanalveridb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/kanalveridb.js -------------------------------------------------------------------------------- /Global/Schemas/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/level.js -------------------------------------------------------------------------------- /Global/Schemas/mainleaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/mainleaderboard.js -------------------------------------------------------------------------------- /Global/Schemas/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/names.js -------------------------------------------------------------------------------- /Global/Schemas/otokayit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/otokayit.js -------------------------------------------------------------------------------- /Global/Schemas/penals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/penals.js -------------------------------------------------------------------------------- /Global/Schemas/registerStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/registerStats.js -------------------------------------------------------------------------------- /Global/Schemas/rolveridb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/rolveridb.js -------------------------------------------------------------------------------- /Global/Schemas/snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/snipe.js -------------------------------------------------------------------------------- /Global/Schemas/specialRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/specialRoom.js -------------------------------------------------------------------------------- /Global/Schemas/specialcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/specialcommand.js -------------------------------------------------------------------------------- /Global/Schemas/taggeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/taggeds.js -------------------------------------------------------------------------------- /Global/Schemas/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/tasks.js -------------------------------------------------------------------------------- /Global/Schemas/toplams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/toplams.js -------------------------------------------------------------------------------- /Global/Schemas/userTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/userTask.js -------------------------------------------------------------------------------- /Global/Schemas/uyarisayi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/uyarisayi.js -------------------------------------------------------------------------------- /Global/Schemas/voiceUserParent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/voiceUserParent.js -------------------------------------------------------------------------------- /Global/Schemas/yetkialdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Schemas/yetkialdir.js -------------------------------------------------------------------------------- /Global/Settings/AyarName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/AyarName.js -------------------------------------------------------------------------------- /Global/Settings/Emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/Emojis.json -------------------------------------------------------------------------------- /Global/Settings/Setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/Setup.json -------------------------------------------------------------------------------- /Global/Settings/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/System.js -------------------------------------------------------------------------------- /Global/Settings/giveaways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/giveaways.json -------------------------------------------------------------------------------- /Global/Settings/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Settings/messages.js -------------------------------------------------------------------------------- /Global/Utils/Prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Utils/Prototype.js -------------------------------------------------------------------------------- /Global/Utils/Reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Global/Utils/Reply.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/README.md -------------------------------------------------------------------------------- /Server/Ertu-Guard/Additions/Distributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Additions/Distributors.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Additions/_console.additions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Additions/_console.additions.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Additions/_general.additions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Additions/_general.additions.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/Roles/RoleCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/Roles/RoleCreate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/Roles/RoleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/Roles/RoleDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/Roles/RoleUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/Roles/RoleUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/Roles/memberRoleAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/Roles/memberRoleAdd.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/_client/RoleDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/_client/RoleDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/_events/_client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/_events/_client/ready.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Guard/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Guard/main.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/Database/Backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/Database/Backup.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/Members/GuildMemberBan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/Members/GuildMemberBan.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/Members/GuildMemberUnban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/Members/GuildMemberUnban.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiCreated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiCreated.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiDeleted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiDeleted.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/_Emoji/EmojiUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/_events/_client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/_events/_client/ready.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardThree/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardThree/main.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelCreate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Channels/ChannelUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Guild/GuildUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Guild/GuildUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationCreate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/Guild/GuildÿntegrationUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/_events/_client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/_events/_client/ready.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/GuardTwo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/GuardTwo/main.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Backup/Guild.Category.Channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Backup/Guild.Category.Channels.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Backup/Guild.Deleted.Roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Backup/Guild.Deleted.Roles.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Backup/Guild.Roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Backup/Guild.Roles.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Backup/Guild.Text.Channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Backup/Guild.Text.Channels.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Backup/Guild.Voice.Channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Backup/Guild.Voice.Channels.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/Guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/Guard.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/guardPenalty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/guardPenalty.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/rolePermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/rolePermissions.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Schemas/webguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Schemas/webguard.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Structures/Default.Clients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Structures/Default.Clients.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/Structures/Default.Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/Structures/Default.Events.js -------------------------------------------------------------------------------- /Server/Ertu-Guard/UrlSpammer/approval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Guard/UrlSpammer/approval.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/Ertu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/Ertu.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/DataBase/Mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/DataBase/Mongoose.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Client/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Client/Ready.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Register/GuildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Register/GuildMemberAdd.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Register/GuildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Register/GuildMemberRemove.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Register/InvıteCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Register/InvıteCreate.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Register/InvıteDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Register/InvıteDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Events/Register/UserUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Events/Register/UserUpdate.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Registery/src/Structures/Ertu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Registery/src/Structures/Ertu.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/Ertu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/Ertu.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/fivedb.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/AllMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/AllMove.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/AuthoritiesCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/AuthoritiesCount.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/ChannelLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/ChannelLog.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/Control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/Control.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/Distribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/Distribute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/GiveRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/GiveRole.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/Lock.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/Meeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/Meeting.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/RoleInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/RoleInfo.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/RoleLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/RoleLog.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/ServerControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/ServerControl.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/TagCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/TagCount.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Admin/Yoklama.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Admin/Yoklama.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/AddBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/AddBalance.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/CoinFlip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/CoinFlip.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Daily.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Divorce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Divorce.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/HeadsOrTails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/HeadsOrTails.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Marry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Marry.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Money.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/RemoveBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/RemoveBalance.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/SendMoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/SendMoney.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Shop.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/Slot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/Slot.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Economy/TopCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Economy/TopCoin.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Activity.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Afk.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Avatar.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Banner.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Booster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Booster.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Help.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Link.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Me.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Move.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Pull.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Ship.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/Spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/Spotify.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Global/İltifat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Global/İltifat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Guard/Audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Guard/Audit.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Guard/GuardSicil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Guard/GuardSicil.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Guard/Panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Guard/Panel.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Guard/Safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Guard/Safe.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Guard/WhiteList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Guard/WhiteList.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Ads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Ads.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/AllMute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/AllMute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/AllUnMute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/AllUnMute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Ban.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/BanList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/BanList.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/BannedTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/BannedTag.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/ForceBan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/ForceBan.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Jail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Jail.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Mute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/PenalPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/PenalPoint.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/PenalSorgu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/PenalSorgu.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Sicil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Sicil.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnForceBan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnForceBan.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnJail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnJail.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnMute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/UnMute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Unban.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/VMute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/VMute.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Warn.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/Warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/Warnings.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Moderation/unSuspend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Moderation/unSuspend.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Rank/EndAuthorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Rank/EndAuthorities.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Rank/GiveAuthorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Rank/GiveAuthorities.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Rank/MyAuthorities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Rank/MyAuthorities.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/Disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/Disconnect.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/Name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/Name.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/Names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/Names.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/Register.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/RegisterStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/RegisterStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/TopTeyit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/TopTeyit.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Register/Unregistered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Register/Unregistered.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/BanAf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/BanAf.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/BotPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/BotPanel.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Eval.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Giveaway.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Kisayollar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Kisayollar.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Leaderboard.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Menu.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/PM2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/PM2.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/PenalButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/PenalButton.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Ping.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Restart.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/SecretRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/SecretRoom.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Setup.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/SpecialCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/SpecialCommand.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/TagliAlim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/TagliAlim.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/UploadEmoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/UploadEmoji.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/UserPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/UserPanel.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Root/Write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Root/Write.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Staffs/Count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Staffs/Count.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Staffs/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Staffs/Delete.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Staffs/Snipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Staffs/Snipe.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Staffs/VoiceControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Staffs/VoiceControl.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/InvıteStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/InvıteStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/LevelStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/LevelStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/RoleStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/RoleStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopCamera.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/TopStream.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Commands/Statistics/UserStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Commands/Statistics/UserStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/DataBase/Mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/DataBase/Mongoose.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Client/InteractionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Client/InteractionCreate.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Client/MessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Client/MessageHandler.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Client/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Client/Ready.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Guard/ChatGuard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Guard/ChatGuard.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/CezaKontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/CezaKontrol.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/Chat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/GuildMemberBoost.On.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/GuildMemberBoost.On.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/GuildMemberBoost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/GuildMemberBoost.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/KanalLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/KanalLog.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/MessageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/MessageDelete.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/MessageEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/MessageEdit.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/RolLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/RolLog.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/SpecialCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/SpecialCommand.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Moderation/İltifat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Moderation/İltifat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/CameraStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/CameraStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/FriendShipStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/FriendShipStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/LevelMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/LevelMessage.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/MessageStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/MessageStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/ResetStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/ResetStats.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/StreamerStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/StreamerStats.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/VoiceLogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/VoiceLogs.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Events/Stat/VoiceStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Events/Stat/VoiceStat.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Extras/GetTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Extras/GetTools.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Structures/Canvas.Functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Structures/Canvas.Functions.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Structures/Classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Structures/Classes.js -------------------------------------------------------------------------------- /Server/Ertu-Main/Supervisor/src/Structures/Ertu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Main/Supervisor/src/Structures/Ertu.js -------------------------------------------------------------------------------- /Server/Ertu-Welcome/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Welcome/System.js -------------------------------------------------------------------------------- /Server/Ertu-Welcome/ertu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Welcome/ertu.js -------------------------------------------------------------------------------- /Server/Ertu-Welcome/ertu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Welcome/ertu.mp3 -------------------------------------------------------------------------------- /Server/Ertu-Welcome/ertucuk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/Server/Ertu-Welcome/ertucuk.js -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/package.json -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/restart.bat -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ertucuk/discord-v14-bots/HEAD/start.bat -------------------------------------------------------------------------------- /stop.bat: -------------------------------------------------------------------------------- 1 | echo off 2 | color d 3 | cls 4 | :a 5 | pm2 stop ecosystem.config.js 6 | goto a --------------------------------------------------------------------------------