├── .gitignore ├── CMakeLists.txt ├── Database ├── DBInfractions.h ├── DBLeaderboard.h ├── DBMessageLog.h ├── DBNicknames.h ├── DBStarboard.h ├── DBTempBans.h ├── Database.cpp ├── Database.h ├── Infractions │ ├── Infractions.cpp │ ├── Infractions.h │ ├── Queries.h.in │ ├── query_warn_delete.sql │ ├── query_warn_delete_all.sql │ ├── query_warn_delta.sql │ ├── query_warn_register.sql │ ├── query_warn_stats.sql │ └── query_warn_timeout.sql ├── Leaderboard │ ├── Leaderboard.cpp │ ├── Leaderboard.h │ ├── Queries.h.in │ ├── query_lb_rank.sql │ ├── query_lb_top.sql │ └── query_lb_update.sql ├── MessageLog │ ├── MessageLog.cpp │ ├── MessageLog.h │ ├── Queries.h.in │ ├── query_msglog_cleanup.sql │ ├── query_msglog_get.sql │ ├── query_msglog_register.sql │ └── query_msglog_update.sql ├── Nicknames │ ├── Nicknames.cpp │ ├── Nicknames.h │ ├── Queries.h.in │ ├── query_nick_cleanup.sql │ ├── query_nick_delete_message.sql │ ├── query_nick_get.sql │ ├── query_nick_register_message.sql │ └── query_nick_update.sql ├── Queries.h.in ├── SQLite.cpp ├── SQLite.h ├── Starboard │ ├── Queries.h.in │ ├── Starboard.cpp │ ├── Starboard.h │ ├── query_sb_get_msg_author.sql │ ├── query_sb_get_rank.sql │ ├── query_sb_get_top_10.sql │ ├── query_sb_register_message.sql │ ├── query_sb_register_reaction.sql │ ├── query_sb_remove_message.sql │ └── query_sb_remove_reaction.sql ├── TempBans │ ├── Queries.h.in │ ├── TempBans.cpp │ ├── TempBans.h │ ├── query_tempban_get_expired.sql │ ├── query_tempban_register.sql │ └── query_tempban_remove.sql └── query_init.sql ├── Discord ├── Base.h ├── Base │ ├── Color.cpp │ ├── Color.h │ ├── ColorFwd.h │ ├── Snowflake.cpp │ ├── Snowflake.h │ └── SnowflakeFwd.h ├── BaseFwd.h ├── Bot.cpp ├── Bot.h ├── Bot_ChannelMessages.cpp ├── Bot_Interaction.cpp ├── CDN.cpp ├── CDN.h ├── Common.h ├── Common │ ├── Concepts.h │ ├── Ptr.h │ └── Visitor.h ├── Coroutines.h ├── Coroutines │ ├── AsyncGenerator.h │ ├── Generator.h │ └── Task.h ├── Exception.h ├── Exception │ ├── DiscordError.cpp │ ├── DiscordError.h │ ├── HttpError.cpp │ └── HttpError.h ├── Gateway │ ├── Application.cpp │ ├── Application.h │ ├── Gateway.cpp │ ├── Gateway.h │ ├── GatewayCommands.cpp │ ├── GatewayEvents.cpp │ ├── GatewayGuildMembers.cpp │ ├── GatewayHttp.cpp │ ├── GatewayImpl.cpp │ ├── GatewayImpl.h │ ├── GatewayIntents.h │ ├── GuildMembersResult.cpp │ ├── GuildMembersResult.h │ ├── ZlibError.cpp │ └── ZlibError.h ├── Interaction.h ├── Interaction │ ├── AppCmdInteraction.cpp │ ├── AppCmdInteraction.h │ ├── InteractionBase.cpp │ ├── InteractionBase.h │ ├── ModalSubmitInteraction.cpp │ ├── ModalSubmitInteraction.h │ ├── MsgCompInteraction.cpp │ └── MsgCompInteraction.h ├── InteractionFwd.h ├── Objects │ ├── Attachment.cpp │ ├── Attachment.h │ ├── Channel.cpp │ ├── Channel.h │ ├── ChannelFwd.h │ ├── Component.h │ ├── Component │ │ ├── Button.cpp │ │ ├── Button.h │ │ ├── Component.cpp │ │ ├── SelectMenu.cpp │ │ ├── SelectMenu.h │ │ ├── TextInput.cpp │ │ ├── TextInput.h │ │ ├── UnsupportedComponent.cpp │ │ └── UnsupportedComponent.h │ ├── Embed.h │ ├── Embed │ │ ├── Embed.cpp │ │ ├── EmbedAuthor.h │ │ ├── EmbedField.h │ │ ├── EmbedFooter.h │ │ └── EmbedMedia.h │ ├── EmbedFwd.h │ ├── Emoji.cpp │ ├── Emoji.h │ ├── EmojiFwd.h │ ├── Guild.cpp │ ├── Guild.h │ ├── GuildFwd.h │ ├── Member.cpp │ ├── Member.h │ ├── MemberFwd.h │ ├── Message.cpp │ ├── Message.h │ ├── MessageFwd.h │ ├── Modal.cpp │ ├── Modal.h │ ├── Role.cpp │ ├── Role.h │ ├── RoleFwd.h │ ├── User.cpp │ ├── User.h │ └── UserFwd.h ├── Utils.h ├── Utils │ ├── Base64.cpp │ └── Utils.cpp ├── VoiceState.cpp ├── VoiceState.h └── VoiceStateFwd.h ├── Dockerfile ├── GreekBot ├── ExceptionReporting.cpp ├── GreekBot.cpp ├── GreekBot.h ├── GreekBot_Avatar.cpp ├── GreekBot_Ban.cpp ├── GreekBot_Button.cpp ├── GreekBot_Clear.cpp ├── GreekBot_Infractions.cpp ├── GreekBot_Leaderboard.cpp ├── GreekBot_Members.cpp ├── GreekBot_MessageEvents.cpp ├── GreekBot_Role.cpp ├── GreekBot_Starboard.cpp ├── GreekBot_TimedActions.cpp ├── GreekBot_Timestamp.cpp ├── GreekBot_Voice.cpp ├── LearningGreek.h ├── MessageLogging.cpp └── Nicknames.cpp ├── README.md ├── boost └── impl.cpp ├── commands ├── avatar.json ├── ban.json ├── ban_greek.json ├── ban_turk.json ├── ban_user.json ├── clear.json ├── holy.json ├── lmg │ ├── infractions.json │ ├── unban.json │ ├── user │ │ ├── infractions.json │ │ └── warn.json │ └── warn.json ├── rank.json ├── role.json ├── timestamp.json └── top.json ├── main.cpp ├── messages ├── booster_roles.json ├── extra_roles.json ├── learning_roles.json ├── misc_roles.json ├── proficiency_roles.json └── welcoming.json └── resources ├── color icons ├── bekris.png ├── color_hard.png ├── color_skatoulis.png ├── gypas.png ├── kakoulis.png ├── lemoni.png ├── melas.png ├── no_color.png ├── pegkw.png ├── polwnos.png ├── portokali.png ├── role_katsika.png ├── role_kynezi.png └── rozoulis.png ├── magik.png ├── mop.gif ├── role icons ├── VAG Rounded Bold.ttf ├── info.md ├── role_a1.png ├── role_a2.png ├── role_b1.png ├── role_b2.png ├── role_c1.png ├── role_c2.png ├── role_cy.png ├── role_gr.png ├── roles.xcf ├── select_a1.png ├── select_a2.png ├── select_b1.png ├── select_b2.png ├── select_c1.png ├── select_c2.png ├── select_cy.png ├── select_gr.png └── select_no.png ├── spin.gif └── voice status icons ├── vc_join.png ├── vc_leave.png └── vc_move.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Database/DBInfractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBInfractions.h -------------------------------------------------------------------------------- /Database/DBLeaderboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBLeaderboard.h -------------------------------------------------------------------------------- /Database/DBMessageLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBMessageLog.h -------------------------------------------------------------------------------- /Database/DBNicknames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBNicknames.h -------------------------------------------------------------------------------- /Database/DBStarboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBStarboard.h -------------------------------------------------------------------------------- /Database/DBTempBans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/DBTempBans.h -------------------------------------------------------------------------------- /Database/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Database.cpp -------------------------------------------------------------------------------- /Database/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Database.h -------------------------------------------------------------------------------- /Database/Infractions/Infractions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/Infractions.cpp -------------------------------------------------------------------------------- /Database/Infractions/Infractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/Infractions.h -------------------------------------------------------------------------------- /Database/Infractions/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/Queries.h.in -------------------------------------------------------------------------------- /Database/Infractions/query_warn_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/query_warn_delete.sql -------------------------------------------------------------------------------- /Database/Infractions/query_warn_delete_all.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM infractions WHERE user_id IS ?; -------------------------------------------------------------------------------- /Database/Infractions/query_warn_delta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/query_warn_delta.sql -------------------------------------------------------------------------------- /Database/Infractions/query_warn_register.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/query_warn_register.sql -------------------------------------------------------------------------------- /Database/Infractions/query_warn_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/query_warn_stats.sql -------------------------------------------------------------------------------- /Database/Infractions/query_warn_timeout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Infractions/query_warn_timeout.sql -------------------------------------------------------------------------------- /Database/Leaderboard/Leaderboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/Leaderboard.cpp -------------------------------------------------------------------------------- /Database/Leaderboard/Leaderboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/Leaderboard.h -------------------------------------------------------------------------------- /Database/Leaderboard/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/Queries.h.in -------------------------------------------------------------------------------- /Database/Leaderboard/query_lb_rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/query_lb_rank.sql -------------------------------------------------------------------------------- /Database/Leaderboard/query_lb_top.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/query_lb_top.sql -------------------------------------------------------------------------------- /Database/Leaderboard/query_lb_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Leaderboard/query_lb_update.sql -------------------------------------------------------------------------------- /Database/MessageLog/MessageLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/MessageLog/MessageLog.cpp -------------------------------------------------------------------------------- /Database/MessageLog/MessageLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/MessageLog/MessageLog.h -------------------------------------------------------------------------------- /Database/MessageLog/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/MessageLog/Queries.h.in -------------------------------------------------------------------------------- /Database/MessageLog/query_msglog_cleanup.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM messages WHERE (id >> 22) < ?; -------------------------------------------------------------------------------- /Database/MessageLog/query_msglog_get.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/MessageLog/query_msglog_get.sql -------------------------------------------------------------------------------- /Database/MessageLog/query_msglog_register.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/MessageLog/query_msglog_register.sql -------------------------------------------------------------------------------- /Database/MessageLog/query_msglog_update.sql: -------------------------------------------------------------------------------- 1 | UPDATE messages SET content=? WHERE id IS ?; -------------------------------------------------------------------------------- /Database/Nicknames/Nicknames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/Nicknames.cpp -------------------------------------------------------------------------------- /Database/Nicknames/Nicknames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/Nicknames.h -------------------------------------------------------------------------------- /Database/Nicknames/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/Queries.h.in -------------------------------------------------------------------------------- /Database/Nicknames/query_nick_cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/query_nick_cleanup.sql -------------------------------------------------------------------------------- /Database/Nicknames/query_nick_delete_message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/query_nick_delete_message.sql -------------------------------------------------------------------------------- /Database/Nicknames/query_nick_get.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/query_nick_get.sql -------------------------------------------------------------------------------- /Database/Nicknames/query_nick_register_message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/query_nick_register_message.sql -------------------------------------------------------------------------------- /Database/Nicknames/query_nick_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Nicknames/query_nick_update.sql -------------------------------------------------------------------------------- /Database/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Queries.h.in -------------------------------------------------------------------------------- /Database/SQLite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/SQLite.cpp -------------------------------------------------------------------------------- /Database/SQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/SQLite.h -------------------------------------------------------------------------------- /Database/Starboard/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/Queries.h.in -------------------------------------------------------------------------------- /Database/Starboard/Starboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/Starboard.cpp -------------------------------------------------------------------------------- /Database/Starboard/Starboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/Starboard.h -------------------------------------------------------------------------------- /Database/Starboard/query_sb_get_msg_author.sql: -------------------------------------------------------------------------------- 1 | SELECT author_id FROM starboard WHERE msg_id IS ?; -------------------------------------------------------------------------------- /Database/Starboard/query_sb_get_rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_get_rank.sql -------------------------------------------------------------------------------- /Database/Starboard/query_sb_get_top_10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_get_top_10.sql -------------------------------------------------------------------------------- /Database/Starboard/query_sb_register_message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_register_message.sql -------------------------------------------------------------------------------- /Database/Starboard/query_sb_register_reaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_register_reaction.sql -------------------------------------------------------------------------------- /Database/Starboard/query_sb_remove_message.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_remove_message.sql -------------------------------------------------------------------------------- /Database/Starboard/query_sb_remove_reaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/Starboard/query_sb_remove_reaction.sql -------------------------------------------------------------------------------- /Database/TempBans/Queries.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/TempBans/Queries.h.in -------------------------------------------------------------------------------- /Database/TempBans/TempBans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/TempBans/TempBans.cpp -------------------------------------------------------------------------------- /Database/TempBans/TempBans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/TempBans/TempBans.h -------------------------------------------------------------------------------- /Database/TempBans/query_tempban_get_expired.sql: -------------------------------------------------------------------------------- 1 | SELECT user_id FROM tempbans WHERE ? >= expires_at; -------------------------------------------------------------------------------- /Database/TempBans/query_tempban_register.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/TempBans/query_tempban_register.sql -------------------------------------------------------------------------------- /Database/TempBans/query_tempban_remove.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM tempbans WHERE user_id IS ?; -------------------------------------------------------------------------------- /Database/query_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Database/query_init.sql -------------------------------------------------------------------------------- /Discord/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base.h -------------------------------------------------------------------------------- /Discord/Base/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/Color.cpp -------------------------------------------------------------------------------- /Discord/Base/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/Color.h -------------------------------------------------------------------------------- /Discord/Base/ColorFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/ColorFwd.h -------------------------------------------------------------------------------- /Discord/Base/Snowflake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/Snowflake.cpp -------------------------------------------------------------------------------- /Discord/Base/Snowflake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/Snowflake.h -------------------------------------------------------------------------------- /Discord/Base/SnowflakeFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Base/SnowflakeFwd.h -------------------------------------------------------------------------------- /Discord/BaseFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/BaseFwd.h -------------------------------------------------------------------------------- /Discord/Bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Bot.cpp -------------------------------------------------------------------------------- /Discord/Bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Bot.h -------------------------------------------------------------------------------- /Discord/Bot_ChannelMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Bot_ChannelMessages.cpp -------------------------------------------------------------------------------- /Discord/Bot_Interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Bot_Interaction.cpp -------------------------------------------------------------------------------- /Discord/CDN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/CDN.cpp -------------------------------------------------------------------------------- /Discord/CDN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/CDN.h -------------------------------------------------------------------------------- /Discord/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Common.h -------------------------------------------------------------------------------- /Discord/Common/Concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Common/Concepts.h -------------------------------------------------------------------------------- /Discord/Common/Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Common/Ptr.h -------------------------------------------------------------------------------- /Discord/Common/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Common/Visitor.h -------------------------------------------------------------------------------- /Discord/Coroutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Coroutines.h -------------------------------------------------------------------------------- /Discord/Coroutines/AsyncGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Coroutines/AsyncGenerator.h -------------------------------------------------------------------------------- /Discord/Coroutines/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Coroutines/Generator.h -------------------------------------------------------------------------------- /Discord/Coroutines/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Coroutines/Task.h -------------------------------------------------------------------------------- /Discord/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Exception.h -------------------------------------------------------------------------------- /Discord/Exception/DiscordError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Exception/DiscordError.cpp -------------------------------------------------------------------------------- /Discord/Exception/DiscordError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Exception/DiscordError.h -------------------------------------------------------------------------------- /Discord/Exception/HttpError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Exception/HttpError.cpp -------------------------------------------------------------------------------- /Discord/Exception/HttpError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Exception/HttpError.h -------------------------------------------------------------------------------- /Discord/Gateway/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/Application.cpp -------------------------------------------------------------------------------- /Discord/Gateway/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/Application.h -------------------------------------------------------------------------------- /Discord/Gateway/Gateway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/Gateway.cpp -------------------------------------------------------------------------------- /Discord/Gateway/Gateway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/Gateway.h -------------------------------------------------------------------------------- /Discord/Gateway/GatewayCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayCommands.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GatewayEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayEvents.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GatewayGuildMembers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayGuildMembers.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GatewayHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayHttp.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GatewayImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayImpl.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GatewayImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayImpl.h -------------------------------------------------------------------------------- /Discord/Gateway/GatewayIntents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GatewayIntents.h -------------------------------------------------------------------------------- /Discord/Gateway/GuildMembersResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GuildMembersResult.cpp -------------------------------------------------------------------------------- /Discord/Gateway/GuildMembersResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/GuildMembersResult.h -------------------------------------------------------------------------------- /Discord/Gateway/ZlibError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/ZlibError.cpp -------------------------------------------------------------------------------- /Discord/Gateway/ZlibError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Gateway/ZlibError.h -------------------------------------------------------------------------------- /Discord/Interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction.h -------------------------------------------------------------------------------- /Discord/Interaction/AppCmdInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/AppCmdInteraction.cpp -------------------------------------------------------------------------------- /Discord/Interaction/AppCmdInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/AppCmdInteraction.h -------------------------------------------------------------------------------- /Discord/Interaction/InteractionBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/InteractionBase.cpp -------------------------------------------------------------------------------- /Discord/Interaction/InteractionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/InteractionBase.h -------------------------------------------------------------------------------- /Discord/Interaction/ModalSubmitInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/ModalSubmitInteraction.cpp -------------------------------------------------------------------------------- /Discord/Interaction/ModalSubmitInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/ModalSubmitInteraction.h -------------------------------------------------------------------------------- /Discord/Interaction/MsgCompInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/MsgCompInteraction.cpp -------------------------------------------------------------------------------- /Discord/Interaction/MsgCompInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Interaction/MsgCompInteraction.h -------------------------------------------------------------------------------- /Discord/InteractionFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/InteractionFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Attachment.cpp -------------------------------------------------------------------------------- /Discord/Objects/Attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Attachment.h -------------------------------------------------------------------------------- /Discord/Objects/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Channel.cpp -------------------------------------------------------------------------------- /Discord/Objects/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Channel.h -------------------------------------------------------------------------------- /Discord/Objects/ChannelFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/ChannelFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component.h -------------------------------------------------------------------------------- /Discord/Objects/Component/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/Button.cpp -------------------------------------------------------------------------------- /Discord/Objects/Component/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/Button.h -------------------------------------------------------------------------------- /Discord/Objects/Component/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/Component.cpp -------------------------------------------------------------------------------- /Discord/Objects/Component/SelectMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/SelectMenu.cpp -------------------------------------------------------------------------------- /Discord/Objects/Component/SelectMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/SelectMenu.h -------------------------------------------------------------------------------- /Discord/Objects/Component/TextInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/TextInput.cpp -------------------------------------------------------------------------------- /Discord/Objects/Component/TextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/TextInput.h -------------------------------------------------------------------------------- /Discord/Objects/Component/UnsupportedComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/UnsupportedComponent.cpp -------------------------------------------------------------------------------- /Discord/Objects/Component/UnsupportedComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Component/UnsupportedComponent.h -------------------------------------------------------------------------------- /Discord/Objects/Embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed.h -------------------------------------------------------------------------------- /Discord/Objects/Embed/Embed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed/Embed.cpp -------------------------------------------------------------------------------- /Discord/Objects/Embed/EmbedAuthor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed/EmbedAuthor.h -------------------------------------------------------------------------------- /Discord/Objects/Embed/EmbedField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed/EmbedField.h -------------------------------------------------------------------------------- /Discord/Objects/Embed/EmbedFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed/EmbedFooter.h -------------------------------------------------------------------------------- /Discord/Objects/Embed/EmbedMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Embed/EmbedMedia.h -------------------------------------------------------------------------------- /Discord/Objects/EmbedFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/EmbedFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Emoji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Emoji.cpp -------------------------------------------------------------------------------- /Discord/Objects/Emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Emoji.h -------------------------------------------------------------------------------- /Discord/Objects/EmojiFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/EmojiFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Guild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Guild.cpp -------------------------------------------------------------------------------- /Discord/Objects/Guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Guild.h -------------------------------------------------------------------------------- /Discord/Objects/GuildFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/GuildFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Member.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Member.cpp -------------------------------------------------------------------------------- /Discord/Objects/Member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Member.h -------------------------------------------------------------------------------- /Discord/Objects/MemberFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/MemberFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Message.cpp -------------------------------------------------------------------------------- /Discord/Objects/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Message.h -------------------------------------------------------------------------------- /Discord/Objects/MessageFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/MessageFwd.h -------------------------------------------------------------------------------- /Discord/Objects/Modal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Modal.cpp -------------------------------------------------------------------------------- /Discord/Objects/Modal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Modal.h -------------------------------------------------------------------------------- /Discord/Objects/Role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Role.cpp -------------------------------------------------------------------------------- /Discord/Objects/Role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/Role.h -------------------------------------------------------------------------------- /Discord/Objects/RoleFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/RoleFwd.h -------------------------------------------------------------------------------- /Discord/Objects/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/User.cpp -------------------------------------------------------------------------------- /Discord/Objects/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/User.h -------------------------------------------------------------------------------- /Discord/Objects/UserFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Objects/UserFwd.h -------------------------------------------------------------------------------- /Discord/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Utils.h -------------------------------------------------------------------------------- /Discord/Utils/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Utils/Base64.cpp -------------------------------------------------------------------------------- /Discord/Utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/Utils/Utils.cpp -------------------------------------------------------------------------------- /Discord/VoiceState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/VoiceState.cpp -------------------------------------------------------------------------------- /Discord/VoiceState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/VoiceState.h -------------------------------------------------------------------------------- /Discord/VoiceStateFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Discord/VoiceStateFwd.h -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /GreekBot/ExceptionReporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/ExceptionReporting.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot.h -------------------------------------------------------------------------------- /GreekBot/GreekBot_Avatar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Avatar.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Ban.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Button.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Clear.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Infractions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Infractions.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Leaderboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Leaderboard.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Members.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Members.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_MessageEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_MessageEvents.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Role.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Starboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Starboard.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_TimedActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_TimedActions.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Timestamp.cpp -------------------------------------------------------------------------------- /GreekBot/GreekBot_Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/GreekBot_Voice.cpp -------------------------------------------------------------------------------- /GreekBot/LearningGreek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/LearningGreek.h -------------------------------------------------------------------------------- /GreekBot/MessageLogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/MessageLogging.cpp -------------------------------------------------------------------------------- /GreekBot/Nicknames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/GreekBot/Nicknames.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/README.md -------------------------------------------------------------------------------- /boost/impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/boost/impl.cpp -------------------------------------------------------------------------------- /commands/avatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/avatar.json -------------------------------------------------------------------------------- /commands/ban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/ban.json -------------------------------------------------------------------------------- /commands/ban_greek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/ban_greek.json -------------------------------------------------------------------------------- /commands/ban_turk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/ban_turk.json -------------------------------------------------------------------------------- /commands/ban_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/ban_user.json -------------------------------------------------------------------------------- /commands/clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/clear.json -------------------------------------------------------------------------------- /commands/holy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/holy.json -------------------------------------------------------------------------------- /commands/lmg/infractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/lmg/infractions.json -------------------------------------------------------------------------------- /commands/lmg/unban.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/lmg/unban.json -------------------------------------------------------------------------------- /commands/lmg/user/infractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/lmg/user/infractions.json -------------------------------------------------------------------------------- /commands/lmg/user/warn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/lmg/user/warn.json -------------------------------------------------------------------------------- /commands/lmg/warn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/lmg/warn.json -------------------------------------------------------------------------------- /commands/rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/rank.json -------------------------------------------------------------------------------- /commands/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/role.json -------------------------------------------------------------------------------- /commands/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/timestamp.json -------------------------------------------------------------------------------- /commands/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/commands/top.json -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/main.cpp -------------------------------------------------------------------------------- /messages/booster_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/booster_roles.json -------------------------------------------------------------------------------- /messages/extra_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/extra_roles.json -------------------------------------------------------------------------------- /messages/learning_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/learning_roles.json -------------------------------------------------------------------------------- /messages/misc_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/misc_roles.json -------------------------------------------------------------------------------- /messages/proficiency_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/proficiency_roles.json -------------------------------------------------------------------------------- /messages/welcoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/messages/welcoming.json -------------------------------------------------------------------------------- /resources/color icons/bekris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/bekris.png -------------------------------------------------------------------------------- /resources/color icons/color_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/color_hard.png -------------------------------------------------------------------------------- /resources/color icons/color_skatoulis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/color_skatoulis.png -------------------------------------------------------------------------------- /resources/color icons/gypas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/gypas.png -------------------------------------------------------------------------------- /resources/color icons/kakoulis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/kakoulis.png -------------------------------------------------------------------------------- /resources/color icons/lemoni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/lemoni.png -------------------------------------------------------------------------------- /resources/color icons/melas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/melas.png -------------------------------------------------------------------------------- /resources/color icons/no_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/no_color.png -------------------------------------------------------------------------------- /resources/color icons/pegkw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/pegkw.png -------------------------------------------------------------------------------- /resources/color icons/polwnos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/polwnos.png -------------------------------------------------------------------------------- /resources/color icons/portokali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/portokali.png -------------------------------------------------------------------------------- /resources/color icons/role_katsika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/role_katsika.png -------------------------------------------------------------------------------- /resources/color icons/role_kynezi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/role_kynezi.png -------------------------------------------------------------------------------- /resources/color icons/rozoulis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/color icons/rozoulis.png -------------------------------------------------------------------------------- /resources/magik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/magik.png -------------------------------------------------------------------------------- /resources/mop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/mop.gif -------------------------------------------------------------------------------- /resources/role icons/VAG Rounded Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/VAG Rounded Bold.ttf -------------------------------------------------------------------------------- /resources/role icons/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/info.md -------------------------------------------------------------------------------- /resources/role icons/role_a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_a1.png -------------------------------------------------------------------------------- /resources/role icons/role_a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_a2.png -------------------------------------------------------------------------------- /resources/role icons/role_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_b1.png -------------------------------------------------------------------------------- /resources/role icons/role_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_b2.png -------------------------------------------------------------------------------- /resources/role icons/role_c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_c1.png -------------------------------------------------------------------------------- /resources/role icons/role_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_c2.png -------------------------------------------------------------------------------- /resources/role icons/role_cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_cy.png -------------------------------------------------------------------------------- /resources/role icons/role_gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/role_gr.png -------------------------------------------------------------------------------- /resources/role icons/roles.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/roles.xcf -------------------------------------------------------------------------------- /resources/role icons/select_a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_a1.png -------------------------------------------------------------------------------- /resources/role icons/select_a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_a2.png -------------------------------------------------------------------------------- /resources/role icons/select_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_b1.png -------------------------------------------------------------------------------- /resources/role icons/select_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_b2.png -------------------------------------------------------------------------------- /resources/role icons/select_c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_c1.png -------------------------------------------------------------------------------- /resources/role icons/select_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_c2.png -------------------------------------------------------------------------------- /resources/role icons/select_cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_cy.png -------------------------------------------------------------------------------- /resources/role icons/select_gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_gr.png -------------------------------------------------------------------------------- /resources/role icons/select_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/role icons/select_no.png -------------------------------------------------------------------------------- /resources/spin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/spin.gif -------------------------------------------------------------------------------- /resources/voice status icons/vc_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/voice status icons/vc_join.png -------------------------------------------------------------------------------- /resources/voice status icons/vc_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/voice status icons/vc_leave.png -------------------------------------------------------------------------------- /resources/voice status icons/vc_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guard3/GreekBot/HEAD/resources/voice status icons/vc_move.png --------------------------------------------------------------------------------