├── LICENSE ├── MasterPoll ├── AntiFlood.php ├── Languages.php ├── basicFunctions.php ├── bot.php ├── commands │ ├── adminPanel.php │ ├── channels.php │ ├── globalCallback.php │ ├── groups.php │ ├── inlineCommands.php │ ├── options.php │ └── private.php ├── configs.php ├── crontab │ └── execute.php ├── databaseConnection.php ├── languages.json ├── masterpoll.php ├── offStatus.php ├── telegramFunctions.php └── translations.json ├── README.md └── webhook.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/LICENSE -------------------------------------------------------------------------------- /MasterPoll/AntiFlood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/AntiFlood.php -------------------------------------------------------------------------------- /MasterPoll/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/Languages.php -------------------------------------------------------------------------------- /MasterPoll/basicFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/basicFunctions.php -------------------------------------------------------------------------------- /MasterPoll/bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/bot.php -------------------------------------------------------------------------------- /MasterPoll/commands/adminPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/adminPanel.php -------------------------------------------------------------------------------- /MasterPoll/commands/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/channels.php -------------------------------------------------------------------------------- /MasterPoll/commands/globalCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/globalCallback.php -------------------------------------------------------------------------------- /MasterPoll/commands/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/groups.php -------------------------------------------------------------------------------- /MasterPoll/commands/inlineCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/inlineCommands.php -------------------------------------------------------------------------------- /MasterPoll/commands/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/options.php -------------------------------------------------------------------------------- /MasterPoll/commands/private.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/commands/private.php -------------------------------------------------------------------------------- /MasterPoll/configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/configs.php -------------------------------------------------------------------------------- /MasterPoll/crontab/execute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/crontab/execute.php -------------------------------------------------------------------------------- /MasterPoll/databaseConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/databaseConnection.php -------------------------------------------------------------------------------- /MasterPoll/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/languages.json -------------------------------------------------------------------------------- /MasterPoll/masterpoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/masterpoll.php -------------------------------------------------------------------------------- /MasterPoll/offStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/offStatus.php -------------------------------------------------------------------------------- /MasterPoll/telegramFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/telegramFunctions.php -------------------------------------------------------------------------------- /MasterPoll/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/MasterPoll/translations.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/README.md -------------------------------------------------------------------------------- /webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeleB54Gold/MasterPollBot/HEAD/webhook.php --------------------------------------------------------------------------------